You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Payden Sutherland
d416fcb62c
|
12 years ago | |
---|---|---|
.gitignore | 12 years ago | |
AUTHORS | 12 years ago | |
COPYING | 12 years ago | |
ChangeLog | 12 years ago | |
INSTALL | 12 years ago | |
Makefile.am | 12 years ago | |
NEWS | 12 years ago | |
README | 12 years ago | |
README.md | 12 years ago | |
autogen.sh | 12 years ago | |
base64.c | 12 years ago | |
config.guess | 12 years ago | |
config.h.in | 12 years ago | |
config.sub | 12 years ago | |
configure.ac | 12 years ago | |
sha1.c | 12 years ago | |
sha1.h | 12 years ago | |
test.c | 12 years ago | |
wsclient.c | 12 years ago | |
wsclient.h | 12 years ago |
README.md
libwsclient
WebSocket client library for C
This library abstracts away WebSocket protocol framing for client connections. It aims to provide a somewhat similar API to the implementation in your browser. You create a new client context and create callbacks to be triggered when certain events occur (onopen, onmessage, onclose, onerror).
Your best bet for getting started is to look at test.c which shows how to connect to an echo server using libwsclient calls.
Also, to install:
./autogen.sh
./configure && make && sudo make install
Then link your C program against wsclient: 'gcc -g -O2 -o test test.c -lwsclient'