nanomsg next generation NNG  
Home GitHub Documentation

This documentation is for version v1.2.2 of nng, but the latest released version is v1.7.3. see the documentation for v1.7.3 for the most up-to-date information.
nng_http_req_set_uri(3http)

SYNOPSIS

#include <nng/nng.h>
#include <nng/supplemental/http/http.h>

int nng_http_req_set_uri(nng_http_req *req, const char *uri);

DESCRIPTION

The nng_http_req_set_uri() sets the Request-URI associated with the request req to uri. The uri should contain precisely the string that will be sent to the HTTP server in the request, including any query information or fragment.

A local copy of the uri is made in the request req.

No validation or canonicalization of the uri is performed.
The nng_url_parse() function can be used to perform validation and canonicalization. The u_requri member will contain a suitable value that can be used with this function.

RETURN VALUES

This function returns 0 on success, and non-zero otherwise.

ERRORS

NNG_ENOMEM

Insufficient memory to perform the operation.

NNG_ENOTSUP

No support for HTTP in the library.

NNG Reference Manual vv1.2.2 © 2019 Staysail Systems, Inc, © 2018 Capitar IT Group BV
This document is supplied under the MIT License.
nanomsg™ and nng™ are trademarks of Garrett D'Amore.