100 const struct icap_header_string icap_hdr[] = {
101 {"ISTag:", 6, ICAP_OPTIONS_ISTAG,
102 offsetof(struct icap_server_info, istag), false},
103 {"Methods:", 8, ICAP_OPTIONS_METHOD,
104 offsetof(struct icap_server_info, method), false},
105 {"Service:", 8, ICAP_OPTIONS_SERVICE_PROVIDER,
106 offsetof(struct icap_server_info, service_provider), false},
107 {"Service-ID:", 11, ICAP_OPTIONS_SERVICE_ID,
108 offsetof(struct icap_server_info, service_provider_id), false},
109 {"Options-TTL:", 12, ICAP_OPTIONS_TTL,
110 offsetof(struct icap_server_info, ttl), true},
111 {"X-Definition-Info:", 18, ICAP_OPTIONS_DEFINITION_INFO,
112 offsetof(struct icap_server_info, definition_info), false},
113 {"Max-Connections:", 16, ICAP_OPTIONS_MAX_CONNECTIONS,
114 offsetof(struct icap_server_info, max_connections), true},
115 {"Preview:", 8, ICAP_OPTIONS_PREVIEW_SIZE,
116 offsetof(struct icap_server_info, preview_size), true},
117 {"Transfer-Preview:", 17, ICAP_OPTIONS_TRANSFER_PREVIEW,
118 offsetof(struct icap_server_info, transfer_preview), false},
119 {"Transfer-Ignore:", 16, ICAP_OPTIONS_TRANSFER_IGNORE,
120 offsetof(struct icap_server_info, transfer_ignore), false},
121 {"Transfer-Complete:", 18, ICAP_OPTIONS_TRANSFER_COMPLETE,
122 offsetof(struct icap_server_info, transfer_complete), false},
123 {"Allow:", 6, ICAP_OPTIONS_ALLOW,
124 offsetof(struct icap_server_info, allow), false}