bbx_net/osc/mod.rs
1//! OSC (Open Sound Control) protocol support.
2//!
3//! This module provides OSC message parsing and a UDP server for receiving
4//! control messages from TouchOSC, Max/MSP, and other OSC-compatible tools.
5//!
6//! Enable with the `osc` feature flag.
7
8mod parser;
9mod server;
10
11pub use parser::parse_osc_message;
12pub use server::{OscServer, OscServerConfig};