Ethereal-dev: [Ethereal-dev] Ethereal 0.8.14 Doesn't Colorize http request and response

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: "Gordon McKinney" <gordon@xxxxxxxxxxxxx>
Date: Tue, 21 Nov 2000 10:59:07 -0000
How quickly can this be resolved and rebuilt for Win32?

I'm not on the dev mailing list, can you CC a reply to me or the users
mailing list.

Source code change that may be responsible:

  switch (http_type) {

  case HTTP_RESPONSE:
   proto_tree_add_boolean_hidden(http_tree,
            hf_http_response, NullTVB, 0, 0, 1);
   break;

  case HTTP_REQUEST:
   proto_tree_add_boolean_hidden(http_tree,
            hf_http_request, NullTVB, 0, 0, 1);
   break;

  case HTTP_OTHERS:
  default:
   break;
  }

Has changed to:

  switch (http_type) {

  case HTTP_RESPONSE:
   proto_tree_add_boolean_hidden(http_tree,
       hf_http_response, tvb, 0, 0, 1);
   break;

  case HTTP_REQUEST:
   proto_tree_add_boolean_hidden(http_tree,
       hf_http_request, tvb, 0, 0, 1);
   break;

  case HTTP_OTHERS:
  default:
   break;
  }
 }


--
Gordon McKinney
http://www.night-ray.com/
Mobile: +44 (0)7770 957 627