aboutsummaryrefslogtreecommitdiffstats
path: root/examples/stream-server.c
AgeCommit message (Collapse)AuthorFilesLines
2016-12-01examples/stream-server.c: use read() rc instead of strlen()Neels Hofmeyr1-2/+4
Fixes: CID#57922 Change-Id: Ibaafdd49d9446a12fe7d0e2f5b2039da3ffc7ea9
2012-08-15src: shorter stream function namesPablo Neira Ayuso1-23/+23
%s/_client_conn_/_cli_/g %s/_server_conn_/_srv_/g %s/_client_/cli/g %s/server/srv/g %s/RECONFIG/RECONF/g %s/SERVER/SRV/g %s/CLIENT/CLI/g
2011-10-17stream: add osmo_stream_*_conn_recvPablo Neira Ayuso1-1/+14
Like c43bb089067ca05af4992fbafe46827a1f0a6e9b but for stream sockets.
2011-10-09stream: add osmo_ prefix to all functionsPablo Neira Ayuso1-21/+22
Modify examples as well to use the new API.
2011-10-05examples: add stream server/client examplePablo Neira Ayuso1-0/+147
This patch adds a couple of examples that allow chatting between the client and the server. For simplicity, the example only support one client.