namespace Adaptation {
namespace Icap {
-class Adaptation::Icap::Options;
-
-
/* OptXact sends an ICAP OPTIONS request to the ICAP service,
* parses the ICAP response, and sends it to the initiator. A NULL response
* means the ICAP service could not be contacted or did not return any
/* Go through the data structure */
while (data_length > offset) {
- header = (struct wccp2_item_header_t *) &wccp2_i_see_you.data[offset];
+ char *data = wccp2_i_see_you.data;
+
+ header = (struct wccp2_item_header_t *) &data[offset];
switch (ntohs(header->type)) {
for (num_caches = 0; num_caches < (int) ntohl(tmp); num_caches++) {
/* Get a copy of the ip */
+ memset(&cache_address, 0, sizeof(cache_address)); // Make GCC happy
switch (Config.Wccp2.assignment_method) {