embedded-nal 0.9.0

A Network Abstraction Layer (NAL) for Embedded Systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # embedded-nal - A Network Abstraction Layer for Embedded Systems
#![no_std]
#![deny(missing_docs)]
#![deny(unsafe_code)]

mod dns;
mod stack;

pub use nb;

pub use dns::{AddrType, Dns};
pub use stack::{
	SharableStack, SharedStack, TcpClientStack, TcpError, TcpErrorKind, TcpFullStack,
	UdpClientStack, UdpFullStack,
};