mirror of
https://github.com/payden/libwsclient
synced 2026-03-02 04:09:18 +00:00
6e47f675cb1d21aa87991849d13bc156731f71bf
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 websock: 'gcc -g -O2 -o test test.c -lwsclient'
Description
Languages
Rust
100%