17#ifndef COAP_ADDRESS_H_ 
   18#define COAP_ADDRESS_H_ 
   30#include <lwip/ip_addr.h> 
   53#define _coap_address_equals_impl(A, B) \ 
   54  ((A)->port == (B)->port &&        \ 
   55   (!!ip_addr_cmp(&(A)->addr,&(B)->addr))) 
   57#define _coap_address_isany_impl(A)  ip_addr_isany(&(A)->addr) 
   59#define _coap_is_mcast_impl(Address) ip_addr_ismulticast(&(Address)->addr) 
   61#elif defined(WITH_CONTIKI) 
   75  return uip_ntohs(addr->port);
 
   83  addr->port = uip_htons(port);
 
   86#define _coap_address_equals_impl(A,B) \ 
   87  ((A)->port == (B)->port &&     \ 
   88   uip_ipaddr_cmp(&((A)->addr),&((B)->addr))) 
   91#define _coap_address_isany_impl(A)  0 
   93#define _coap_is_mcast_impl(Address) uip_is_addr_mcast(&((Address)->addr)) 
   98#define sa_family_t short 
  101#define COAP_UNIX_PATH_MAX   (sizeof(struct sockaddr_in6) - sizeof(sa_family_t)) 
  189                                            uint16_t secure_port,
 
  191                                            uint16_t ws_secure_port,
 
  193                                            int scheme_hint_bits,
 
  225                                 const uint8_t *host, 
size_t host_len);
 
  228#if defined(WITH_LWIP) || defined(WITH_CONTIKI) 
  237#if defined(WITH_LWIP) || defined(WITH_CONTIKI) 
  247  return _coap_address_equals_impl(a, b);
 
  262#if !defined(WITH_LWIP) && !defined(WITH_CONTIKI) 
  290  return a && _coap_is_mcast_impl(a);
 
COAP_STATIC_INLINE int coap_address_isany(const coap_address_t *a)
Checks if given address object a denotes the wildcard address.
 
void coap_address_set_port(coap_address_t *addr, uint16_t port)
Set the port field of addr to port (in host byte order).
 
int coap_address_set_unix_domain(coap_address_t *addr, const uint8_t *host, size_t host_len)
Copy the parsed unix domain host into coap_address_t structure translating %2F into / on the way.
 
void coap_free_address_info(coap_addr_info_t *info_list)
Free off the one or more linked sets of coap_addr_info_t returned from coap_resolve_address_info().
 
struct coap_addr_info_t coap_addr_info_t
Resolved addresses information.
 
int coap_is_af_unix(const coap_address_t *a)
Checks if given address a denotes a AF_UNIX address.
 
int coap_is_bcast(const coap_address_t *a)
Checks if given address a denotes a broadcast address.
 
void coap_address_init(coap_address_t *addr)
Resets the given coap_address_t object addr to its default values.
 
int coap_is_mcast(const coap_address_t *a)
Checks if given address a denotes a multicast address.
 
coap_resolve_type_t
coap_resolve_type_t values
 
@ COAP_RESOLVE_TYPE_LOCAL
local side of session
 
@ COAP_RESOLVE_TYPE_REMOTE
remote side of session
 
int _coap_address_isany_impl(const coap_address_t *a)
 
uint16_t coap_address_get_port(const coap_address_t *addr)
Returns the port from addr in host byte order.
 
uint32_t coap_get_available_scheme_hint_bits(int have_pki_psk, int ws_check, coap_proto_t use_unix_proto)
Determine and set up scheme_hint_bits for a server that can be used in a call to coap_resolve_address...
 
coap_addr_info_t * coap_resolve_address_info(const coap_str_const_t *address, uint16_t port, uint16_t secure_port, uint16_t ws_port, uint16_t ws_secure_port, int ai_hints_flags, int scheme_hint_bits, coap_resolve_type_t type)
Resolve the specified address into a set of coap_address_t that can be used to bind() (local) or conn...
 
#define COAP_UNIX_PATH_MAX
 
void coap_address_copy(coap_address_t *dst, const coap_address_t *src)
 
int coap_address_equals(const coap_address_t *a, const coap_address_t *b)
Compares given address objects a and b.
 
Pre-defined constants that reflect defaults for CoAP.
 
coap_uri_scheme_t
The scheme specifiers.
 
coap_proto_t
CoAP protocol types.
 
Platform specific header file for CoAP stack.
 
#define COAP_STATIC_INLINE
 
Resolved addresses information.
 
coap_uri_scheme_t scheme
CoAP scheme to use.
 
coap_proto_t proto
CoAP protocol to use.
 
struct coap_addr_info_t * next
Next entry in the chain.
 
coap_address_t addr
The address to connect / bind to.
 
Multi-purpose address abstraction.
 
socklen_t size
size of addr
 
struct coap_sockaddr_un cun
 
union coap_address_t::@0 addr
 
char sun_path[COAP_UNIX_PATH_MAX]
 
CoAP string data definition with const data.