项目作者: snapview

项目描述 :
Lightweight stream-based WebSocket implementation for Rust.
高级语言: Rust
项目地址: git://github.com/snapview/tungstenite-rs.git
创建时间: 2017-03-17T15:38:17Z
项目社区:https://github.com/snapview/tungstenite-rs

开源协议:Other

下载


Tungstenite

Lightweight stream-based WebSocket implementation for Rust.

  1. use std::net::TcpListener;
  2. use std::thread::spawn;
  3. use tungstenite::accept;
  4. /// A WebSocket echo server
  5. fn main () {
  6. let server = TcpListener::bind("127.0.0.1:9001").unwrap();
  7. for stream in server.incoming() {
  8. spawn (move || {
  9. let mut websocket = accept(stream.unwrap()).unwrap();
  10. loop {
  11. let msg = websocket.read().unwrap();
  12. // We do not want to send back ping/pong messages.
  13. if msg.is_binary() || msg.is_text() {
  14. websocket.send(msg).unwrap();
  15. }
  16. }
  17. });
  18. }
  19. }

Take a look at the examples section to see how to write a simple client/server.

NOTE: tungstenite-rs is more like a barebone to build reliable modern networking applications
using WebSockets. If you’re looking for a modern production-ready “batteries included” WebSocket
library that allows you to efficiently use non-blocking sockets and do “full-duplex” communication,
take a look at tokio-tungstenite.

MIT licensed
Apache-2.0 licensed
Crates.io
Build Status

Documentation

Introduction

This library provides an implementation of WebSockets,
RFC6455. It allows for both synchronous (like TcpStream)
and asynchronous usage and is easy to integrate into any third-party event loops including
MIO. The API design abstracts away all the internals of the
WebSocket protocol but still makes them accessible for those who wants full control over the
network.

Why Tungstenite?

It’s formerly WS2, the 2nd implementation of WS. WS2 is the chemical formula of
tungsten disulfide, the tungstenite mineral.

Features

Tungstenite provides a complete implementation of the WebSocket specification.
TLS is supported on all platforms using native-tls or rustls. The following
features are available:

  • native-tls
  • native-tls-vendored
  • rustls-tls-native-roots
  • rustls-tls-webpki-roots

Choose the one that is appropriate for your needs.

By default no TLS feature is activated, so make sure you use one of the TLS features,
otherwise you won’t be able to communicate with the TLS endpoints.

There is no support for permessage-deflate at the moment, but the PRs are welcome :wink:

Testing

Tungstenite is thoroughly tested and passes the Autobahn Test Suite for
WebSockets. It is also covered by internal unit tests as well as possible.

Contributing

Please report bugs and make feature requests here.