1//! C interface for the WebSocket client module of NetworkKit netstack. 2 3#[cfg(feature = "api-11")] 4#[cfg_attr(docsrs, doc(cfg(feature = "api-11")))] 5#[link(name = "net_websocket")] 6unsafe extern "C" {} 7 8mod net_websocket_ffi; 9pub use net_websocket_ffi::*;