Zelphir Kaltstahl 2214aa59be add some description | 5 gadi atpakaļ | |
---|---|---|
.. | ||
networking-lib | 6 gadi atpakaļ | |
dependencies.md | 6 gadi atpakaļ | |
official-guile-guide-examples.scm | 5 gadi atpakaļ | |
readme.org | 5 gadi atpakaļ | |
run-client.scm | 5 gadi atpakaļ | |
run-server.scm | 5 gadi atpakaļ | |
tcp-client.scm | 5 gadi atpakaļ | |
tcp-server.scm | 5 gadi atpakaļ |
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.