Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.