| 931 | } |
| 932 | |
| 933 | const char* HttpServletRequest::getRequestReferer(void) const |
| 934 | { |
| 935 | if (cgi_mode_) { |
| 936 | return acl_getenv("HTTP_REFERER"); |
| 937 | } |
| 938 | if (client_ == NULL) { |
| 939 | return NULL; |
| 940 | } |
| 941 | return client_->header_value("Referer"); |
| 942 | } |
| 943 | |
| 944 | const http_ctype& HttpServletRequest::getHttpCtype(void) const |
| 945 | { |
nothing calls this directly
no test coverage detected