8 lines
427 B
Rust
8 lines
427 B
Rust
// file: crates/apps/game-realtime-webtransport-browser-smoke/src/shared.rs
|
|
// version: 1
|
|
|
|
/// Binary payload sent from the real browser to the native smoke peer.
|
|
pub(crate) const BROWSER_PAYLOAD: &[u8] = b"games.sasedev-webtransport-browser-client-smoke";
|
|
/// Binary payload sent from the native smoke peer back to the real browser.
|
|
pub(crate) const SERVER_PAYLOAD: &[u8] = b"games.sasedev-webtransport-browser-server-smoke";
|