NEWS 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. wslay 0.1.1
  2. ===========
  3. Release Note
  4. ------------
  5. This release fixes the example programs and tutorial. It does not
  6. change library code at all, so the library version has not been
  7. changed.
  8. Changes
  9. -------
  10. * Fixed example source code and tutorial.
  11. wslay 0.1.0
  12. ===========
  13. Release Note
  14. ------------
  15. This is the initial release of wslay WebSocket C library.
  16. Wslay is a WebSocket library written in C. It implements the protocol
  17. version 13 described in RFC 6455. This library offers 2 levels of API:
  18. event-based API and frame-based low-level API. For event-based API, it
  19. is suitable for non-blocking reactor pattern style. You can set
  20. callbacks in various events. For frame-based API, you can send
  21. WebSocket frame directly. Wslay only supports data transfer part of
  22. WebSocket protocol and does not perform opening handshake in HTTP.
  23. Wslay does not perform any I/O operations for its own. Instead, it
  24. offers callbacks for them. This makes Wslay independent on any I/O
  25. frameworks, SSL, sockets, etc. This makes Wslay protable across
  26. various platforms and the application authors can choose freely IO
  27. frameworks.
  28. Visit http://wslay.sourceforge.net/ for the API reference and
  29. tutorial.