c_stdlib::{in6_addr, in_addr, sa_family_t, sockaddr_in, sockaddr_in6, socklen_t, AF_INET, AF_INET6},
coap_proto_t_COAP_PROTO_UDP, coap_split_proxy_uri, coap_split_uri, coap_str_const_t, coap_string_equal,
use crate::{context::ensure_coap_started, error::UriParsingError, message::CoapOption, protocol::UriPort};
/// If you want to get the coap_address_t safely, use [into_raw_address()](CoapAddress::into_raw_address()).
/// Converts this address into the corresponding raw [coap_address_t](libcoap_sys::coap_address_t)
/// The easiest way to instantiate a request or location CoAP URI is by parsing a string (either
/// [CoapUri::new_relative] or from a [Url] (requires the `url` feature), refer to the method level
/// If you want to create a proxy URI, refer to the method-level documentation [CoapUri::new_proxy],
/// of CoAP option lengths, the URI path components, query components, and hostnames for a URI must not
/// exceed 255 bytes each, i.e. a full path with more than 255 bytes is fine, but each individual
/// specified in [RFC 7252, section 5.10.2](https://datatracker.ietf.org/doc/html/rfc7252#section-5.10.2)),
Self::construct_uri_string_from_parts(scheme, host, port, path.unwrap_or(&[b'/']), query.unwrap_or(&[]))?;
Self::construct_uri_string_from_parts(scheme, host, port, path.unwrap_or(&[b'/']), query.unwrap_or(&[]))?;
pub fn new_relative(path: Option<&[u8]>, query: Option<&[u8]>) -> Result<CoapUri, UriParsingError> {
/// let uri: CoapUri = CoapUri::try_from_str_proxy("coap://example.com:4711/foo/bar?answer=42")?;
CoapOption::from_optlist_entry(optlist.as_ref().expect("self-generated options should always be valid"))
/// method is safe), modifying the referenced URI parts by (unsafely) dereferencing and mutating
/// This method will create a copy of the provided URI, i.e. `raw_uri` will remain valid and not
.expect("could not convert from variable sized value to fixed size number as the lengths don't match"),
.expect("could not convert from variable sized value to fixed size number as the lengths don't match"),
.expect("could not convert from variable sized value to fixed size number as the lengths don't match"),
.expect("could not convert from variable sized value to fixed size number as the lengths don't match"),