I am trying to figure out how to implement a non-trivial protocol (over TCP) using Haskell conduit. Examples of what I consider non-trivial:
- Read some header byte(s) and if they match what is expected, ignore them and continue; else, return an error to the client.
- Read N byte(s) that indicate the length of a field, then read that number of bytes into a bytestring.
- Perform a back-and-forth handshake between the client and server, like a capability negotiation. After the negotiation, invoke different server-side code depending on what was negotiated. (for example negotiating a protocol version that the server and client agree on)
- Timeout the connection, with an error sent to the client, if the client fails to negotiate the protocol quickly enough
So far I am struggling... any help or a pointer to some example code would be greatly appreciated!
The question is somewhat vague, but if you're looking for an example of controlling actions in a conduit based on previously parsed results, an implementation of the netstring protocol may be sufficient: