async-opcua-core 0.19.0

OPC UA core utils for client and server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// OPCUA for Rust
// SPDX-License-Identifier: MPL-2.0
// Copyright (C) 2017-2024 Adam Lock

//! Contains all code related to sending / receiving messages from a transport
//! and turning those messages into and out of chunks.

pub mod buffer;
pub mod chunker;
pub mod message_chunk;
pub mod message_chunk_info;
pub mod secure_channel;
pub mod security_header;
pub mod sequence_number;
pub mod tcp_codec;
pub mod tcp_types;
pub mod url;