parsec_interface/requests/common/mod.rs
1// Copyright 2020 Contributors to the Parsec project.
2// SPDX-License-Identifier: Apache-2.0
3
4//! This module implements the raw wire protocol header frame for requests and responses in
5//! all defined versions of the protocol (currently just 1.0).
6pub mod wire_header_1_0;
7
8const MAGIC_NUMBER: u32 = 0x5EC0_A710;