Searched defs:major (Results 1 - 5 of 5) sorted by relevance

/httpd/modules/dav/fs/
H A Ddbm.c255 unsigned char major; member in struct:__anon103
432 /* call it a major version error */
435 "Prop database has the wrong major "
452 if (m.major != DAV_DBVSN_MAJOR) {
457 "Prop database has the wrong major "
497 m.major = DAV_DBVSN_MAJOR;
/httpd/server/
H A Dprotocol.c562 unsigned int major = 1, minor = 0; /* Assume HTTP/1.0 if non-"HTTP" protocol */ local
684 if (3 == sscanf(r->protocol, "%4s/%u.%u", http, &major, &minor)
687 r->proto_num = HTTP_VERSION(major, minor);
/httpd/modules/proxy/
H A Dmod_proxy_http.c1437 int major, minor; local
1440 major = buffer[5] - '0';
1446 if ((major != 1) || (len >= sizeof(buffer)-1)) {
1496 major, minor, r->uri, r->method);
1601 if ((major < 1) || (minor < 1)) {
H A Dproxy_util.c2618 unsigned int major, minor; local
2627 if (sscanf(buffer, "HTTP/%u.%u %3s", &major, &minor, code_str) == 3) {
/httpd/include/
H A Dhttpd.h264 #define HTTP_VERSION(major,minor) (1000*(major)+(minor))
405 int major; /**< major number */ member in struct:__anon28
900 * XXX: keep it to reintroduce ap_body_to_table without major bump? */

Completed in 40 milliseconds