libcoap 4.3.5-develop-ea01661
Loading...
Searching...
No Matches
coap_uri.h
Go to the documentation of this file.
1/*
2 * coap_uri.h -- helper functions for URI treatment
3 *
4 * Copyright (C) 2010-2025 Olaf Bergmann <bergmann@tzi.org>
5 *
6 * SPDX-License-Identifier: BSD-2-Clause
7 *
8 * This file is part of the CoAP library libcoap. Please see README for terms
9 * of use.
10 */
11
17#ifndef COAP_URI_H_
18#define COAP_URI_H_
19
20#include <stdint.h>
21
22#include "coap_str.h"
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
43
45#define COAP_URI_SCHEME_SECURE_MASK 0x01
46
47#define COAP_URI_SCHEME_COAP_BIT (1 << COAP_URI_SCHEME_COAP)
48#define COAP_URI_SCHEME_COAPS_BIT (1 << COAP_URI_SCHEME_COAPS)
49#define COAP_URI_SCHEME_COAP_TCP_BIT (1 << COAP_URI_SCHEME_COAP_TCP)
50#define COAP_URI_SCHEME_COAPS_TCP_BIT (1 << COAP_URI_SCHEME_COAPS_TCP)
51#define COAP_URI_SCHEME_HTTP_BIT (1 << COAP_URI_SCHEME_HTTP)
52#define COAP_URI_SCHEME_HTTPS_BIT (1 << COAP_URI_SCHEME_HTTPS)
53#define COAP_URI_SCHEME_COAP_WS_BIT (1 << COAP_URI_SCHEME_COAP_WS)
54#define COAP_URI_SCHEME_COAPS_WS_BIT (1 << COAP_URI_SCHEME_COAPS_WS)
55
56#define COAP_URI_SCHEME_ALL_COAP_BITS (COAP_URI_SCHEME_COAP_BIT | \
57 COAP_URI_SCHEME_COAPS_BIT | \
58 COAP_URI_SCHEME_COAP_TCP_BIT | \
59 COAP_URI_SCHEME_COAPS_TCP_BIT | \
60 COAP_URI_SCHEME_COAP_WS_BIT | \
61 COAP_URI_SCHEME_COAPS_WS_BIT)
62
86
87static inline int
89 return uri && ((uri->scheme & COAP_URI_SCHEME_SECURE_MASK) != 0);
90}
91
102
113coap_uri_t *coap_new_uri(const uint8_t *uri, unsigned int length);
114
125
131void coap_delete_uri(coap_uri_t *uri);
132
156int coap_split_uri(const uint8_t *str_var, size_t len, coap_uri_t *uri);
157
174int coap_split_proxy_uri(const uint8_t *str_var, size_t len, coap_uri_t *uri);
175
200 coap_optlist_t **optlist_chain,
201 int create_port_host_opt,
202 uint8_t *buf, size_t buflen);
203
222int coap_uri_into_optlist(const coap_uri_t *uri, const coap_address_t *dst,
223 coap_optlist_t **optlist_chain,
224 int create_port_host_opt);
225
241int coap_split_path(const uint8_t *path,
242 size_t length,
243 unsigned char *buf,
244 size_t *buflen);
245
261int coap_path_into_optlist(const uint8_t *path, size_t length,
262 coap_option_num_t optnum,
263 coap_optlist_t **optlist_chain);
264
280int coap_split_query(const uint8_t *query,
281 size_t length,
282 unsigned char *buf,
283 size_t *buflen);
284
298int coap_query_into_optlist(const uint8_t *query, size_t length,
299 coap_option_num_t optnum,
300 coap_optlist_t **optlist_chain);
301
311
321
324#ifdef __cplusplus
325}
326#endif
327
328#endif /* COAP_URI_H_ */
uint16_t coap_option_num_t
Definition coap_option.h:24
Strings to be used in the CoAP library.
static int coap_uri_scheme_is_secure(const coap_uri_t *uri)
Definition coap_uri.h:88
coap_uri_scheme_t
The scheme specifiers.
Definition coap_uri.h:32
@ COAP_URI_SCHEME_COAPS_WS
Definition coap_uri.h:40
@ COAP_URI_SCHEME_COAPS_TCP
Definition coap_uri.h:36
@ COAP_URI_SCHEME_COAPS
Definition coap_uri.h:34
@ COAP_URI_SCHEME_COAP_TCP
Definition coap_uri.h:35
@ COAP_URI_SCHEME_COAP_WS
Definition coap_uri.h:39
@ COAP_URI_SCHEME_HTTPS
Definition coap_uri.h:38
@ COAP_URI_SCHEME_COAP
Definition coap_uri.h:33
@ COAP_URI_SCHEME_LAST
Definition coap_uri.h:41
@ COAP_URI_SCHEME_HTTP
Definition coap_uri.h:37
void coap_delete_uri(coap_uri_t *uri)
Removes the specified coap_uri_t object.
Definition coap_uri.c:920
#define COAP_URI_SCHEME_SECURE_MASK
This mask can be used to check if a parsed URI scheme is secure.
Definition coap_uri.h:45
coap_uri_t * coap_clone_uri(const coap_uri_t *uri)
Clones the specified coap_uri_t object.
Definition coap_uri.c:878
coap_uri_t * coap_new_uri(const uint8_t *uri, unsigned int length)
Creates a new coap_uri_t object from the specified URI.
Definition coap_uri.c:857
int coap_host_is_unix_domain(const coap_str_const_t *host)
Determines from the host whether this is a Unix Domain socket request.
Definition coap_uri.c:389
coap_string_t * coap_get_uri_path(const coap_pdu_t *request)
Extract uri_path string from request PDU.
Definition coap_uri.c:990
int coap_split_path(const uint8_t *path, size_t length, unsigned char *buf, size_t *buflen)
Splits the given URI path into segments.
Definition coap_uri.c:685
int coap_query_into_optlist(const uint8_t *query, size_t length, coap_option_num_t optnum, coap_optlist_t **optlist_chain)
Splits the given URI query into '&' separate segments, and then adds the Uri-Query / Location-Query o...
Definition coap_uri.c:827
int coap_split_uri(const uint8_t *str_var, size_t len, coap_uri_t *uri)
Parses a given string into URI components.
Definition coap_uri.c:276
int coap_path_into_optlist(const uint8_t *path, size_t length, coap_option_num_t optnum, coap_optlist_t **optlist_chain)
Splits the given URI path into '/' separate segments, and then adds the Uri-Path / Location-Path opti...
Definition coap_uri.c:737
int coap_split_proxy_uri(const uint8_t *str_var, size_t len, coap_uri_t *uri)
Parses a given string into URI components.
Definition coap_uri.c:281
int coap_uri_into_options(const coap_uri_t *uri, const coap_address_t *dst, coap_optlist_t **optlist_chain, int create_port_host_opt, uint8_t *buf, size_t buflen)
Takes a coap_uri_t and then adds CoAP options into the optlist_chain.
int coap_uri_into_optlist(const coap_uri_t *uri, const coap_address_t *dst, coap_optlist_t **optlist_chain, int create_port_host_opt)
Takes a coap_uri_t and then adds CoAP options into the optlist_chain.
Definition coap_uri.c:304
int coap_split_query(const uint8_t *query, size_t length, unsigned char *buf, size_t *buflen)
Splits the given URI query into segments.
Definition coap_uri.c:803
coap_string_t * coap_get_query(const coap_pdu_t *request)
Extract query string from request PDU according to escape rules in 6.5.8.
Definition coap_uri.c:939
Multi-purpose address abstraction.
Representation of chained list of CoAP options to install.
structure for CoAP PDUs
CoAP string data definition with const data.
Definition coap_str.h:49
CoAP string data definition.
Definition coap_str.h:41
Representation of parsed URI.
Definition coap_uri.h:72
enum coap_uri_scheme_t scheme
The parsed scheme specifier.
Definition coap_uri.h:84
coap_str_const_t path
The complete path if present or {0, NULL}.
Definition coap_uri.h:75
uint16_t port
The port in host byte order.
Definition coap_uri.h:74
coap_str_const_t query
The complete query if present or {0, NULL}.
Definition coap_uri.h:79
coap_str_const_t host
The host part of the URI.
Definition coap_uri.h:73