C client for socket.io

后端 未结 4 552
别跟我提以往
别跟我提以往 2021-01-15 09:07

I am trying to establish a connection from a program in C to a node server with socket.io.

The only way I could figure out was to make http request from the C progra

相关标签:
4条回答
  • 2021-01-15 09:26

    Can you use C++ instead? If so,

    https://github.com/ebshimizu/socket.io-clientpp

    0 讨论(0)
  • 2021-01-15 09:34

    You can also try cellophane.io:

    https://github.com/ikeralbeniz/cellophane.io

    it is still buggy so it is only fot testing or POCs..

    0 讨论(0)
  • 2021-01-15 09:35

    If you are looking for a library and examples try libwebsockets

    It has both client and server capability and I hope it should help you out well with its documentations and examples.

    0 讨论(0)
  • 2021-01-15 09:52

    New C++ Client

    Based on Boost and WebSocket++, this full-featured Socket.IO 1.0 client has the fundamental advantage of working on multiple platforms.

    http://socket.io/blog/socket-io-cpp/

    0 讨论(0)
提交回复
热议问题