Skip to main content

opcua_core/comms/
mod.rs

1// OPCUA for Rust
2// SPDX-License-Identifier: MPL-2.0
3// Copyright (C) 2017-2024 Adam Lock
4
5//! Contains all code related to sending / receiving messages from a transport
6//! and turning those messages into and out of chunks.
7
8pub mod buffer;
9pub mod chunker;
10pub mod message_chunk;
11pub mod message_chunk_info;
12pub mod secure_channel;
13pub mod security_header;
14pub mod sequence_number;
15pub mod tcp_codec;
16pub mod tcp_types;
17pub mod url;