ne_get_request_target − retrieve request target
#include <ne_request.h>
|
const ne_uri *ne_get_request_target(ne_request *req); |
The ne_get_request_target returns the request target URI as a pointer to an ne_uri object. The "target resource" of a request is defined per Section 7.1 of RFC 9110 [1] and is derived from the parameters used to create the request with ne_request_create and the parameters used to create the session with ne_session_create.
The ne_get_request_target function returns a ne_uri, or NULL if it was not possible to create the target URI. The latter can only occur if the path used to create the request object was not a valid URI path. Note that the path field of the returned object can be the empty string if the authority−form of the URI is used.
ne_get_request_target is available in neon 0.34.0 and later.
ne_request_create, ne_session_create.
Copyright © 2001-2025 Joe Orton
|
1. |
Section 7.1 of RFC 9110 |
https://www.rfc-editor.org/rfc/rfc9110.html#section-7.1