This is an automated email from the ASF dual-hosted git repository.

bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 321eaa2  Remove unused unit test source files in src/tscore.
321eaa2 is described below

commit 321eaa2c03f5c2a6993243bcceeaca2c23f31bf7
Author: Walter Karas <wka...@verizonmedia.com>
AuthorDate: Mon Mar 23 13:39:56 2020 -0500

    Remove unused unit test source files in src/tscore.
---
 src/tscore/IntrusivePtrTest.cc |  80 --------
 src/tscore/Makefile.am         |   6 -
 src/tscore/TestHttpHeader.cc   | 222 ----------------------
 src/tscore/load_http_hdr.cc    | 407 -----------------------------------------
 4 files changed, 715 deletions(-)

diff --git a/src/tscore/IntrusivePtrTest.cc b/src/tscore/IntrusivePtrTest.cc
deleted file mode 100644
index 85bd7e3..0000000
--- a/src/tscore/IntrusivePtrTest.cc
+++ /dev/null
@@ -1,80 +0,0 @@
-/** @file
-
-    Intrusive pointer test.
-
-    @section license License
-
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
-*/
-
-#include "tscore/IntrusivePtr.h"
-#include "tscpp/util/IntrusiveDList.h"
-#include "tscore/TestBox.h"
-
-namespace
-{ // Hide our local definitions
-
-// Test class for pointers and lists.
-class A : public IntrusivePtrCounter
-{
-public:
-  A() : _data(0) {}
-  static A *&
-  nextPtr(A *a)
-  {
-    return a->_next;
-  }
-  static A *&
-  prevPtr(A *a)
-  {
-    return a->_prev;
-  }
-  int _data;
-  A *_next;
-  A *_prev;
-};
-
-// Definitions to test compilation.
-typedef IntrusivePtrQueue<A, IntrusivePtrLinkFunction<A, &A::nextPtr, 
&A::prevPtr>> AList;
-} // namespace
-
-REGRESSION_TEST(IntrusivePtr_Test_Basic)(RegressionTest *t, int atype, int 
*pstatus)
-{
-  IntrusivePtr<A> ptr1;
-  IntrusivePtr<A> ptr2(new A);
-
-  TestBox tb(t, pstatus);
-
-  tb = REGRESSION_TEST_PASSED;
-
-  tb.check(!ptr1, "Default construct pointer is not empty.");
-  tb.check(ptr2, "Construction from pointer was empty.");
-
-  AList alist1;
-
-  tb.check(ptr2->useCount() == 1, "Bad use count: expected 1 got %d", 
ptr2->useCount());
-  alist1.append(ptr2);
-  tb.check(ptr2->useCount() == 2, "Bad use count: expected 2 got %d", 
ptr2->useCount());
-  alist1.remove(ptr2);
-  tb.check(ptr2->useCount() == 1, "Bad use count: expected 1 got %d", 
ptr2->useCount());
-  alist1.prepend(ptr2);
-  tb.check(ptr2->useCount() == 2, "Bad use count: expected 2 got %d", 
ptr2->useCount());
-  for (AList::iterator spot = alist1.begin(), limit = alist1.end(); spot != 
limit; ++spot) {
-    if (spot->_data)
-      break;
-  }
-}
diff --git a/src/tscore/Makefile.am b/src/tscore/Makefile.am
index 36b5fa1..76cd274 100644
--- a/src/tscore/Makefile.am
+++ b/src/tscore/Makefile.am
@@ -134,12 +134,6 @@ endif
 
 BufferWriterFormat.o : AM_CPPFLAGS += -Wno-char-subscripts
 
-#test_UNUSED_SOURCES = \
-#  load_http_hdr.cc \
-#  IntrusivePtrTest.cc \
-#  IpMapTest.cc \
-#  TestHttpHeader.cc
-
 # Special hacks to generate the parser rules
 $(srcdir)/ParseRules.cc: ParseRulesCType
 
diff --git a/src/tscore/TestHttpHeader.cc b/src/tscore/TestHttpHeader.cc
deleted file mode 100644
index 6e63be4..0000000
--- a/src/tscore/TestHttpHeader.cc
+++ /dev/null
@@ -1,222 +0,0 @@
-/** @file
-
-  A brief file description
-
-  @section license License
-
-  Licensed to the Apache Software Foundation (ASF) under one
-  or more contributor license agreements.  See the NOTICE file
-  distributed with this work for additional information
-  regarding copyright ownership.  The ASF licenses this file
-  to you under the Apache License, Version 2.0 (the
-  "License"); you may not use this file except in compliance
-  with the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
- */
-
-/*************************** -*- Mod: C++ -*- ******************************
-
-   TestHeaderTokenizer.cc --
-   Created On      : Mon Jan 20 11:48:10 1997
-
-
- ****************************************************************************/
-#include "HttpHeaderTokenizer.h"
-#include "tscore/ink_assert.h"
-#include <stdio.h>
-#include <stdlib.h>
-#include <errno.h>
-#include <ctype.h>
-#include <memory.h>
-#include <assert.h>
-#include <string.h>
-#include <strings.h>
-#include <unistd.h>
-#include <stdarg.h>
-#include <libgen.h>
-#include <limits.h>
-#include <fcntl.h>
-#include <time.h>
-#include <sys/param.h>
-#include <sys/stat.h>
-
-static void
-add_field(HttpHeader *h, const char *name, const char *value)
-{
-  h->m_header_fields.set_raw_header_field(name, value);
-}
-
-/////////////////////////////////////////////////////////////
-//
-//  test_add_fields()
-//
-/////////////////////////////////////////////////////////////
-static void
-test_add_fields(HttpHeader *h)
-{
-  char long_accept_header[2048];
-  memset(long_accept_header, 'B', sizeof(long_accept_header));
-  long_accept_header[sizeof(long_accept_header) - 1] = '\0';
-  add_field(h, "Accept", long_accept_header);
-  add_field(h, "Accept", "image/gif");
-  add_field(h, "Accept", "image/x-xbitmap");
-  add_field(h, "Accept", "image/jpeg");
-  add_field(h, "Accept", "image/pjpeg");
-  add_field(h, "Accept", "*/*");
-  add_field(h, "Set-Cookie", "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
-  add_field(h, "Set-Cookie", "1234567890987654321");
-  return;
-}
-
-/////////////////////////////////////////////////////////////
-//
-//  test_hacked_http_header_field()
-//
-/////////////////////////////////////////////////////////////
-static void
-test_hacked_http_header_field()
-{
-  HttpHackedMultiValueRawHeaderField f;
-
-#define ADD_FIELD(s) f.add(s, sizeof(s))
-  ADD_FIELD("image/gif");
-  ADD_FIELD("image/x-xbitmap");
-  ADD_FIELD("image/jpeg");
-  ADD_FIELD("image/pjpeg");
-  ADD_FIELD("*/*");
-#undef ADD_FIELD
-
-  int count = f.get_count();
-  cout << "count = " << count << endl;
-  int length = 0;
-  for (int i = 0; i < count; i++) {
-    cout << "Accept: " << f.get(i, &length) << endl;
-    cout << "(length = " << length << ")" << endl;
-  }
-  return;
-}
-
-/////////////////////////////////////////////////////////////
-//
-//  test_url_parse()
-//
-/////////////////////////////////////////////////////////////
-void
-test_url_parse(const char *url_string)
-{
-  URL url(url_string, strlen(url_string));
-  char buf[4096];
-
-  url.dump(buf, sizeof(buf));
-
-  cout << buf << endl;
-
-  return;
-}
-
-/////////////////////////////////////////////////////////////
-//
-//  test_url()
-//
-/////////////////////////////////////////////////////////////
-void
-test_url()
-{
-  test_url_parse("http://charm.example.com  ");
-  test_url_parse("http://";
-                 
"webchat16.wbs.net:6666?private=herbalessences&color=4&volume=0&tagline=&picture=&home_page=hi@there.&ignore="
-                 
"edheldinruth+taz0069+speezman&back=&Room=Hot_Tub&handle=cagou67&mu="
-                 
"893e159ef7fe0ddb022c655cc1c30abd33d4ae6d90d22f8a&last_read_para=&npo=&fsection=input&chatmode=push&reqtype=input&"
-                 
"InputText=Sweetie%2C+do+you+have+time+to+go+to+a+private+room..if+not+I%27m+just+going+to+have+to+change+to+"
-                 "normal+mode...let+me+know%3F%3F/");
-
-  return;
-}
-
-/////////////////////////////////////////////////////////////
-//
-//  test_header_tokenizer()
-//
-// message_type HTTP_MESSAGE_TYPE_REQUEST or HTTP_MESSAGE_TYPE_RESPONSE
-/////////////////////////////////////////////////////////////
-void
-test_header_tokenizer_run(const char *buf, HttpMessageType_t message_type)
-{
-  HttpHeaderTokenizer tokenizer;
-  HttpHeader header;
-  int bytes_used;
-
-  tokenizer.start(&header, message_type, false);
-
-  tokenizer.run(buf, strlen(buf), true, &bytes_used);
-
-  cout << header << endl;
-
-  return;
-}
-
-void
-test_header_tokenizer()
-{
-  test_header_tokenizer_run("GET "
-                            "http://";
-                            
"webchat16.wbs.net:6666?private=herbalessences&color=4&volume=0&tagline=&picture=&home_page=hi@there.&"
-                            
"ignore=edheldinruth+taz0069+speezman&back=&Room=Hot_Tub&handle=cagou67&mu="
-                            
"893e159ef7fe0ddb022c655cc1c30abd33d4ae6d90d22f8a&last_read_para=&npo=&fsection=input&chatmode=push&"
-                            
"reqtype=input&InputText=Sweetie%2C+do+you+have+time+to+go+to+a+private+room..if+not+I%27m+just+going+"
-                            
"to+have+to+change+to+normal+mode...let+me+know%3F%3F/ HTTP/1.0\r\n",
-                            HTTP_MESSAGE_TYPE_REQUEST);
-
-  return;
-}
-
-/////////////////////////////////////////////////////////////
-//
-//  TestHttpHeader()
-//
-/////////////////////////////////////////////////////////////
-void
-TestHttpHeader()
-{
-  HttpHeader h;
-  h.m_message_type = HTTP_MESSAGE_TYPE_REQUEST;
-  h.m_method       = HTTP_METHOD_GET;
-  h.m_version      = HttpVersion(1, 0);
-
-  test_add_fields(&h);
-
-  cout << h << endl;
-
-  cout << "concatenated accept" << endl;
-  char accept_buf[4000];
-  h.m_header_fields.get_comma_separated_accept_value(accept_buf, 
sizeof(accept_buf));
-  cout << accept_buf << endl;
-
-  int l;
-  cout << "first accept" << endl;
-  cout << h.m_header_fields.m_accept.get(0, &l) << endl;
-
-  char buf[4096];
-  int marshal_length = h.marshal(buf, sizeof(buf));
-
-  HttpHeader h1;
-  h1.unmarshal(buf, marshal_length);
-
-  cout << "unmarshalled: " << endl;
-  cout << h1 << endl;
-
-  cout << "test url parser:" << endl;
-  test_url();
-
-  cout << "test_header_tokenizer:" << endl;
-  test_header_tokenizer();
-
-  return;
-}
diff --git a/src/tscore/load_http_hdr.cc b/src/tscore/load_http_hdr.cc
deleted file mode 100644
index c9d840f..0000000
--- a/src/tscore/load_http_hdr.cc
+++ /dev/null
@@ -1,407 +0,0 @@
-/** @file
-
-  A brief file description
-
-  @section license License
-
-  Licensed to the Apache Software Foundation (ASF) under one
-  or more contributor license agreements.  See the NOTICE file
-  distributed with this work for additional information
-  regarding copyright ownership.  The ASF licenses this file
-  to you under the Apache License, Version 2.0 (the
-  "License"); you may not use this file except in compliance
-  with the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
- */
-
-/****************************************************************************
-
-   load_http_hdr.cc
-
-   Description:
-
-   Opens a file with a dbx dump of an http hdr and prints it out
-
-
- ****************************************************************************/
-
-#include "Marshal.h"
-#include "MIME.h"
-#include "HTTP.h"
-#include "tscore/Tokenizer.h"
-#include <stdio.h>
-#include <errno.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <unistd.h>
-
-enum hdr_type {
-  UNKNOWN_HDR,
-  REQUEST_HDR,
-  RESPONSE_HDR,
-  HTTP_INFO_HDR,
-  RAW_MBUFFER,
-};
-
-void walk_mime_field(MIMEField f);
-void walk_mstring(MBuffer *bufp, int32_t offset);
-void walk_mbuffer(MBuffer *bufp);
-void print_http_info_impl(HTTPInfo hi);
-void print_http_hdr_impl(HTTPHdr h);
-
-void
-print_hdr(HTTPHdr to_print)
-{
-  char b[4096];
-  int used, tmp, offset;
-  int done;
-  offset = 0;
-  do {
-    used = 0;
-    tmp  = offset;
-    done = to_print.print(b, 4095, &used, &tmp);
-    offset += used;
-    b[used] = '\0';
-    printf("%s", b);
-  } while (!done);
-}
-
-void
-dump_hdr(char *mbuf, hdr_type h_type)
-{
-  HTTPHdr to_dump;
-  HTTPInfo to_dump_info;
-
-  if (h_type == RESPONSE_HDR) {
-    to_dump.locate_resp(mbuf);
-    print_hdr(to_dump);
-  } else if (h_type == REQUEST_HDR) {
-    to_dump.locate_req(mbuf);
-    print_hdr(to_dump);
-  } else {
-    to_dump_info.locate(mbuf);
-
-    to_dump = to_dump_info.request_get();
-    if (to_dump.valid()) {
-      print_hdr(to_dump);
-    } else {
-      fprintf(stderr, "HttpInfo request invalid\n");
-    }
-
-    to_dump = to_dump_info.response_get();
-
-    if (to_dump.valid()) {
-      print_hdr(to_dump);
-    } else {
-      fprintf(stderr, "HttpInfo response invalid\n");
-    }
-  }
-}
-
-void
-load_buffer(int fd, hdr_type h_type)
-{
-  struct stat s_info;
-
-  if (fstat(fd, &s_info) < 0) {
-    fprintf(stderr, "Failed to stat data file : %s\n", strerror(errno));
-    exit(1);
-  }
-
-  char *file_buf           = (char *)ats_malloc(sizeof(char) * (s_info.st_size 
+ 1));
-  file_buf[s_info.st_size] = '\0';
-
-  // Read in the entire file
-  int bytes_to_read = s_info.st_size;
-  while (bytes_to_read > 0) {
-    int done = read(fd, file_buf, bytes_to_read);
-
-    if (done < 0) {
-      fprintf(stderr, "Failed to read data file : %s\n", strerror(errno));
-      exit(1);
-    } else if (done == 0) {
-      fprintf(stderr, "EOF encountered\n", strerror(errno));
-      exit(1);
-    }
-
-    bytes_to_read -= done;
-  }
-
-  Tokenizer line_tok("\n");
-  Tokenizer el_tok(" \t");
-
-  int num_lines = line_tok.Initialize(file_buf);
-  int num_el    = el_tok.Initialize(line_tok[0]);
-
-  if (num_el < 3) {
-    fprintf(stderr, "Corrupted data file\n");
-    exit(1);
-  }
-
-  int mbuf_size, mbuf_length;
-  if (sscanf(el_tok[2], "%x", &mbuf_length) != 1) {
-    fprintf(stderr, "Corrupted data file\n");
-    exit(1);
-  }
-
-  mbuf_size = MARSHAL_DEFAULT_SIZE;
-  while (mbuf_size < mbuf_length) {
-    mbuf_size *= 2;
-  }
-
-  char *mbuf     = (char *)ats_malloc(mbuf_size);
-  int bytes_read = 0;
-  int cur_line   = 0;
-
-  while (cur_line < num_lines && bytes_read < mbuf_size) {
-    int *cur_ptr;
-    num_el = el_tok.Initialize(line_tok[cur_line]);
-
-    int el;
-    for (int i = 1; i < num_el; i++) {
-      if (sscanf(el_tok[i], "%x", &el) != 1) {
-        fprintf(stderr, "Corrupted data file\n");
-        exit(1);
-      }
-      cur_ptr  = (int *)(mbuf + bytes_read);
-      *cur_ptr = el;
-      bytes_read += 4;
-    }
-    cur_line++;
-  }
-
-  if (bytes_read != mbuf_length) {
-    fprintf(stderr, "Size mismatch: read %d  mbuf_length %d  mbuf_size %d\n", 
bytes_read, mbuf_length, mbuf_size);
-    //      exit(1);
-  }
-
-  /*
-     int raw_fd = open("foo", O_RDWR |O_CREAT | O_TRUNC );
-     if (raw_fd > 0) {
-     write(raw_fd, mbuf, mbuf_size);
-     close(raw_fd);
-     } else {
-     perror("open: ");
-     }
-   */
-
-  if (h_type == RAW_MBUFFER) {
-    MBuffer m_buf_struct;
-    memset(&m_buf_struct, 0, sizeof(MBuffer));
-    mbuffer_set(&m_buf_struct, mbuf);
-    m_buf_struct.m_ext_refcount = 1;
-    m_buf_struct.m_size         = bytes_read;
-    walk_mbuffer(&m_buf_struct);
-  } else {
-    dump_hdr(mbuf, h_type);
-  }
-}
-
-int
-main(int argc, const char *argv[])
-{
-  hdr_type h_type = UNKNOWN_HDR;
-
-  http_init();
-  if (argc != 3) {
-    fprintf(stderr, "Usage: %s req|res <file>\n", argv[0]);
-    exit(1);
-  }
-
-  if (strcasecmp(argv[1], "req") == 0) {
-    h_type = REQUEST_HDR;
-  } else if (strcasecmp(argv[1], "resp") == 0) {
-    h_type = RESPONSE_HDR;
-  } else if (strcasecmp(argv[1], "hinfo") == 0) {
-    h_type = HTTP_INFO_HDR;
-  } else if (strcasecmp(argv[1], "mbuf") == 0) {
-    h_type = RAW_MBUFFER;
-  } else {
-    fprintf(stderr, "Usage: %s req|resp|hinfo|mbuf <file>\n", argv[0]);
-    exit(1);
-  }
-
-  int fd = open(argv[2], O_RDONLY);
-
-  if (fd < 0) {
-    fprintf(stderr, "Could not open file %s : %s\n", argv[2], strerror(errno));
-    exit(1);
-  }
-  load_buffer(fd, h_type);
-
-  return 0;
-}
-
-/*********************************************************************
-  Code for manual groking the mbuf objects
-*******************************************************************/
-
-// extern const char *marshal_strs[];
-
-char *marshal_type_strs[] = {"EMPTY ", "OBJ   ", "STR   ", "URL   ", "URL_F ", 
"URL_H ", "M_VALS",
-                             "M_FLD ", "M_HDR ", "H_HDR ", "H_REQ ", "H_RESP", 
"H_INFO"};
-
-void
-walk_mbuffer(MBuffer *bufp)
-{
-  int offset     = 3;
-  int max_offset = (*bufp->m_length) / 4;
-
-  do {
-    MObjectImpl *mo = (MObjectImpl *)mbuffer_get_obj(bufp, offset);
-    printf("offset %.3d  m_length %.2d  m_type %s     ", offset, 
(int)mo->m_length, marshal_type_strs[mo->type]);
-
-    switch ((int)mo->type) {
-    case MARSHAL_MIME_FIELD: {
-      MIMEField f(bufp, offset);
-      walk_mime_field(f);
-      break;
-    }
-    case MARSHAL_STRING: {
-      walk_mstring(bufp, offset);
-      printf("\n");
-      break;
-    }
-    case MARSHAL_HTTP_INFO: {
-      HTTPInfo i(bufp, offset);
-      print_http_info_impl(i);
-      printf("\n");
-      break;
-    }
-    case MARSHAL_HTTP_HEADER:
-    case MARSHAL_HTTP_HEADER_REQ:
-    case MARSHAL_HTTP_HEADER_RESP: {
-      HTTPHdr h(bufp, offset);
-      print_http_hdr_impl(h);
-      printf("\n");
-      break;
-    }
-
-    default:
-      printf("\n");
-    }
-
-    offset += mo->m_length;
-  } while (offset < max_offset);
-}
-
-void
-walk_mstring(MBuffer *bufp, int32_t offset)
-{
-  int bufindex   = 0;
-  int dumpoffset = 0;
-  char fbuf[4096];
-
-  //    int32_t soffset = field_offset;
-  //    soffset <<= MARSHAL_ALIGNMENT;
-  //    printf("offset: %d.  shifted field_offset: %d\n",
-  //         field_offset, soffset);
-
-  memset(fbuf, 0, 4096);
-  mstring_print(bufp, offset, fbuf, 4095, &bufindex, &dumpoffset);
-
-  printf("%s", fbuf);
-}
-
-void
-walk_mime_field(MIMEField f)
-{
-  int bufindex   = 0;
-  int dumpoffset = 0;
-  char fbuf[4096];
-
-  //    int32_t soffset = field_offset;
-  //    soffset <<= MARSHAL_ALIGNMENT;
-  //    printf("offset: %d.  shifted field_offset: %d\n",
-  //         field_offset, soffset);
-
-  MIMEFieldImpl *fi = MIMEFieldPtr(f.m_buffer, f.m_offset);
-  memset(fbuf, 0, 4096);
-  mime_field_print(f.m_buffer, f.m_offset, fbuf, 4095, &bufindex, &dumpoffset);
-
-  printf("(%d,%d) [%d,%d,%d] %s", (int)fi->m_nvalues, (int)fi->m_flags, 
(int)fi->m_name_offset, (int)fi->m_values_offset,
-         (int)fi->m_next_offset, fbuf);
-}
-
-void
-walk_http_resp_hdr(HTTPHdr resp)
-{
-  HTTPHdrImpl *r = HTTPHdrPtr(resp.m_buffer, resp.m_offset);
-
-  printf("Http Response Hdr\n");
-
-  if (r->type != MARSHAL_HTTP_HEADER_RESP) {
-    printf("Type match failed\n");
-    return;
-  }
-
-  int16_t field_offset = r->m_fields_offset;
-
-  while (field_offset != MARSHAL_NULL_OFFSET) {
-    MIMEFieldImpl *f = MIMEFieldPtr(resp.m_buffer, field_offset);
-
-    MIMEField field(resp.m_buffer, field_offset);
-    walk_mime_field(field);
-
-    field_offset = f->m_next_offset;
-  }
-}
-
-void
-walk_http_info(HTTPInfo hi)
-{
-  HTTPInfoImpl *info = HTTPInfoPtr(hi.m_buffer, hi.m_offset);
-
-  printf("HttpInfo\n");
-
-  if (info->type != MARSHAL_HTTP_INFO) {
-    printf("Type match failed\n");
-    return;
-  }
-
-  printf("id: %d  rid: %d\n", info->m_id, info->m_rid);
-  printf("Request Sent Time %s", ctime(&info->m_request_sent_time));
-  printf("Response Received Time %s\n", 
ctime(&info->m_response_received_time));
-  printf("Request Offset: %d   Response Offset: %d", info->m_request_offset, 
info->m_response_offset);
-}
-
-void
-print_http_info_impl(HTTPInfo hi)
-{
-  HTTPInfoImpl *info = HTTPInfoPtr(hi.m_buffer, hi.m_offset);
-
-  if (info->type != MARSHAL_HTTP_INFO) {
-    printf("Type match failed\n");
-    return;
-  }
-
-  printf("id: %d  rid: %d  req: %d  resp: %d", info->m_id, info->m_rid, 
info->m_request_offset, info->m_response_offset);
-}
-
-void
-print_http_hdr_impl(HTTPHdr h)
-{
-  HTTPHdrImpl *hdr = HTTPHdrPtr(h.m_buffer, h.m_offset);
-
-  if (hdr->type == MARSHAL_HTTP_HEADER) {
-    printf("fields: %d", (int)hdr->m_fields_offset);
-    return;
-  } else if (hdr->type == MARSHAL_HTTP_HEADER_REQ) {
-    printf("method: %d  url: %d  fields: %d", (int)hdr->u.req.m_method_offset, 
(int)hdr->u.req.m_url_offset,
-           (int)hdr->m_fields_offset);
-  } else if (hdr->type == MARSHAL_HTTP_HEADER_RESP) {
-    printf("status: %d  reason: %d  fields: %d", (int)hdr->u.resp.m_status, 
(int)hdr->u.resp.m_reason_offset,
-           (int)hdr->m_fields_offset);
-  } else {
-    printf("Type match failed\n");
-    return;
-  }
-}

Reply via email to