MCPcopy Create free account
hub / github.com/acl-dev/acl / getRequestUri

Method getRequestUri

lib_acl_cpp/src/http/HttpServletRequest.cpp:251–262  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

249}
250
251const char* HttpServletRequest::getRequestUri(void) const
252{
253 if (cgi_mode_) {
254 return acl_getenv("REQUEST_URI");
255 }
256 if (client_ == NULL) {
257 return "";
258 } else {
259 const char* ptr = client_->request_url();
260 return ptr ? ptr : "";
261 }
262}
263
264HttpSession& HttpServletRequest::getSession(bool create /* = true */,
265 const char* sid_in /* = NULL */)

Callers 2

doPostMethod · 0.80
doPostMethod · 0.80

Calls 2

acl_getenvFunction · 0.85
request_urlMethod · 0.80

Tested by

no test coverage detected