Extensible Connection-oriented Messaging (XCM)
Loading...
Searching...
No Matches
xcm_addr.h
Go to the documentation of this file.
1/*
2 * SPDX-License-Identifier: BSD-3-Clause
3 * Copyright(c) 2020 Ericsson AB
4 */
5
6#ifndef XCM_ADDR_H
7#define XCM_ADDR_H
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12#include <errno.h>
13#include <inttypes.h>
14#include <netinet/in.h>
15#include <stdbool.h>
16#include <sys/socket.h>
17#include <sys/types.h>
18
24#define XCM_UTLS_PROTO "utls"
27#define XCM_TLS_PROTO "tls"
29#define XCM_TCP_PROTO "tcp"
31#define XCM_SCTP_PROTO "sctp"
34#define XCM_UX_PROTO "ux"
37#define XCM_UXF_PROTO "uxf"
38
41#define XCM_BTLS_PROTO "btls"
43#define XCM_BTCP_PROTO "btcp"
44
45enum xcm_addr_type {
46 xcm_addr_type_name,
47 xcm_addr_type_ip
48};
49
52{
54 sa_family_t family;
55
57 union {
60 in_addr_t ip4;
63 uint8_t ip6[16];
65};
66
69{
71 enum xcm_addr_type type;
72
74 union {
75 struct xcm_addr_ip ip;
76 /* Max DNS name length is 253 characters */
77 char name[254];
78 };
79};
80
94bool xcm_addr_is_valid(const char *xcm_addr_s);
95
105bool xcm_addr_is_supported(const char *xcm_addr_s);
106
120int xcm_addr_parse_proto(const char *addr_s, char *proto, size_t capacity);
121
135int xcm_addr_parse_utls(const char *utls_addr_s, struct xcm_addr_host *host,
136 uint16_t *port);
137
151int xcm_addr_parse_tls(const char *tls_addr_s, struct xcm_addr_host *host,
152 uint16_t *port);
153
168int xcm_addr_parse_tcp(const char *tcp_addr_s, struct xcm_addr_host *host,
169 uint16_t *port);
170
185int xcm_addr_parse_sctp(const char *sctp_addr_s, struct xcm_addr_host *host,
186 uint16_t *port);
187
201int xcm_addr_parse_ux(const char *ux_addr_s, char *ux_path, size_t capacity);
202
216int xcm_addr_parse_uxf(const char *uxf_addr_s, char *uxf_path,
217 size_t capacity);
218
232int xcm_addr_parse_btcp(const char *btcp_addr_s, struct xcm_addr_host *host,
233 uint16_t *port);
234
248int xcm_addr_parse_btls(const char *btls_addr_s, struct xcm_addr_host *host,
249 uint16_t *port);
250
266int xcm_addr_make_utls(const struct xcm_addr_host *host, unsigned short port,
267 char *utls_addr_s, size_t capacity);
268
284int xcm_addr_make_tls(const struct xcm_addr_host *host, unsigned short port,
285 char *tls_addr_s, size_t capacity);
286
302int xcm_addr_make_tcp(const struct xcm_addr_host *host, unsigned short port,
303 char *tcp_addr_s, size_t capacity);
304
320int xcm_addr_make_sctp(const struct xcm_addr_host *host, unsigned short port,
321 char *sctp_addr_s, size_t capacity);
322
337int xcm_addr_make_ux(const char *ux_name, char *ux_addr_s, size_t capacity);
338
353int xcm_addr_make_uxf(const char *uxf_name, char *uxf_addr_s, size_t capacity);
354
370int xcm_addr_make_btcp(const struct xcm_addr_host *host, unsigned short port,
371 char *btcp_addr_s, size_t capacity);
372
388int xcm_addr_make_btls(const struct xcm_addr_host *host, unsigned short port,
389 char *btls_addr_s, size_t capacity);
390
391#include <xcm_addr_compat.h>
392
393#ifdef __cplusplus
394}
395#endif
396#endif
Definition xcm_addr.h:69
enum xcm_addr_type type
Definition xcm_addr.h:71
Definition xcm_addr.h:52
union xcm_addr_ip::@0 addr
sa_family_t family
Definition xcm_addr.h:54
uint8_t ip6[16]
Definition xcm_addr.h:63
in_addr_t ip4
Definition xcm_addr.h:60
int xcm_addr_parse_uxf(const char *uxf_addr_s, char *uxf_path, size_t capacity)
int xcm_addr_make_btls(const struct xcm_addr_host *host, unsigned short port, char *btls_addr_s, size_t capacity)
int xcm_addr_make_utls(const struct xcm_addr_host *host, unsigned short port, char *utls_addr_s, size_t capacity)
int xcm_addr_parse_sctp(const char *sctp_addr_s, struct xcm_addr_host *host, uint16_t *port)
int xcm_addr_make_ux(const char *ux_name, char *ux_addr_s, size_t capacity)
int xcm_addr_parse_utls(const char *utls_addr_s, struct xcm_addr_host *host, uint16_t *port)
bool xcm_addr_is_supported(const char *xcm_addr_s)
int xcm_addr_parse_btls(const char *btls_addr_s, struct xcm_addr_host *host, uint16_t *port)
int xcm_addr_make_tcp(const struct xcm_addr_host *host, unsigned short port, char *tcp_addr_s, size_t capacity)
int xcm_addr_make_tls(const struct xcm_addr_host *host, unsigned short port, char *tls_addr_s, size_t capacity)
int xcm_addr_parse_ux(const char *ux_addr_s, char *ux_path, size_t capacity)
int xcm_addr_parse_btcp(const char *btcp_addr_s, struct xcm_addr_host *host, uint16_t *port)
int xcm_addr_make_uxf(const char *uxf_name, char *uxf_addr_s, size_t capacity)
int xcm_addr_parse_proto(const char *addr_s, char *proto, size_t capacity)
bool xcm_addr_is_valid(const char *xcm_addr_s)
int xcm_addr_parse_tls(const char *tls_addr_s, struct xcm_addr_host *host, uint16_t *port)
int xcm_addr_parse_tcp(const char *tcp_addr_s, struct xcm_addr_host *host, uint16_t *port)
int xcm_addr_make_btcp(const struct xcm_addr_host *host, unsigned short port, char *btcp_addr_s, size_t capacity)
int xcm_addr_make_sctp(const struct xcm_addr_host *host, unsigned short port, char *sctp_addr_s, size_t capacity)