Zelphir Kaltstahl 2214aa59be add some description | il y a 5 ans | |
---|---|---|
.. | ||
networking-lib | il y a 6 ans | |
dependencies.md | il y a 6 ans | |
official-guile-guide-examples.scm | il y a 5 ans | |
readme.org | il y a 5 ans | |
run-client.scm | il y a 5 ans | |
run-server.scm | il y a 5 ans | |
tcp-client.scm | il y a 5 ans | |
tcp-server.scm | il y a 5 ans |
This example presents a way to use Guile to build a naive TCP client and TCP server.
One idea in this example implementation is, that you can define a protocol for the server and for the client separately, by specifying ...
... for each end.
The example defines a JSON display protocol, which simply displays any JSON received from the server and a JSON echo protocol for the server, which simply sends back whatever the server receives.
For a real application one can imagine all kind of things to be invoked from the handlers, which constitute a protocol.
This example does not deal with any complex logic implemented in the handlers.