nng_http_req_get_uri − return HTTP request URI
#include
<nng/nng.h>
#include <nng/supplemental/http/http.h>
const char *nng_http_req_get_uri(nng_http_req *req);
The nng_http_req_get_uri() returns the URI (path) associated with the HTTP request req. The value returned includes the path, as well as any query information or fragment. The value will look like a file system path with those optional components appended, such as /api/get_info.cgi?name=garrett.
Request URI as a string.
None.
nng_http_req_alloc(3http), nng_http_req_set_uri(3http), nng(7)