aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-10-09stream: add osmo_ prefix to all functionsPablo Neira Ayuso4-133/+142
Modify examples as well to use the new API.
2011-10-05add COPYING file (GPLv2 license)Pablo Neira Ayuso1-0/+339
2011-10-05examples: add stream server/client examplePablo Neira Ayuso3-1/+282
This patch adds a couple of examples that allow chatting between the client and the server. For simplicity, the example only support one client.
2011-10-05stream: remove internal stream_msg_recv()Pablo Neira Ayuso1-14/+2
Remove stream_msg_recv(...), now we use recv(...) directly. This fixes since we were calling msgb_put(...) twice.
2011-10-05stream: remove includes from stream.h headerPablo Neira Ayuso2-5/+1
The should be uses in the client program. They are not required by the generic stream socket infrastructure.
2011-10-05add generic datagram socket infrastructure and examplesPablo Neira Ayuso7-83/+469
This patch adds new datagram socket infrastructure and it reworks the previous examples (now it's LAPD over datagram).
2011-10-04initial commitPablo Neira Ayuso14-0/+1174