Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeffa5/mirage-xmpp
Implementation of XMPP for MirageOS
https://github.com/jeffa5/mirage-xmpp
mirageos ocaml unikernel xmpp
Last synced: 23 days ago
JSON representation
Implementation of XMPP for MirageOS
- Host: GitHub
- URL: https://github.com/jeffa5/mirage-xmpp
- Owner: jeffa5
- License: mit
- Created: 2018-10-20T20:18:24.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-08T15:50:00.000Z (over 5 years ago)
- Last Synced: 2024-10-24T15:38:33.779Z (27 days ago)
- Topics: mirageos, ocaml, unikernel, xmpp
- Language: OCaml
- Homepage: https://jeffas.io/mirage-xmpp/
- Size: 729 KB
- Stars: 15
- Watchers: 5
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# XMPP server on MirageOS
## Demos
The demos folder serves as a reference to some basic necessities for the project.
Sockets is very simple, basically copied from the mirage website to check building of the unikernel and running locally.
Send-receive is still simple, basically being an echo server for whatever the user decides to send it.
xml-parsing is more complex, it handles the connections but also has to include the xml parsing section which is not so simple due to having to push data into a stream where the xml parser pulls it out the other side.
xml-parsing-pkg is an effort to split the code into a core package which abstracts away from the lower level detail of sending data back and forth. This is the final demo before starting the actual implementation.