cloudpub-common 3.0.2

Common code for the client, server, and GUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2023, networkException <git@nwex.de>
 *
 * SPDX-License-Identifier: BSD-2-Clause OR MIT
 */

mod listener;
mod socket_addr;
mod stream;

pub use listener::Listener;
pub use socket_addr::{NamedSocketAddr, SocketAddr, UnixSocketAddr};
pub use stream::Stream;