| 249 | } |
| 250 | |
| 251 | const 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 | |
| 264 | HttpSession& HttpServletRequest::getSession(bool create /* = true */, |
| 265 | const char* sid_in /* = NULL */) |
no test coverage detected