File: debug.c

package info (click to toggle)
c-icap 1%3A0.1.6-1.1%2Bdeb7u2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 3,180 kB
  • sloc: ansic: 17,800; sh: 10,452; makefile: 187; perl: 67
file content (90 lines) | stat: -rw-r--r-- 2,590 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 *  Copyright (C) 2004-2008 Christos Tsantilas
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 *  MA  02110-1301  USA.
 */

#include "common.h"
#include "c-icap.h"
#include <stdio.h>
#include "debug.h"


int CI_DEBUG_LEVEL = 1;
int CI_DEBUG_STDOUT = 0;


#ifndef _WIN32
void (*__log_error) (void *req, const char *format, ...) = NULL;

#else
void (*__vlog_error) (void *req, const char *format, va_list ap) = NULL;
void __ldebug_printf(int i, const char *format, ...)
{
     va_list ap;
     if (i <= CI_DEBUG_LEVEL) {
          va_start(ap, format);
          if (__vlog_error) {
               (*__vlog_error) (NULL, format, ap);
          }
          if (CI_DEBUG_STDOUT)
               vprintf(format, ap);
          va_end(ap);
     }
}
#endif

/*
void debug_print_request(ci_request_t *req){
     int i,j;

     ci_debug_printf(1,"Request Type :\n");
     if(req->type>=0){
	  ci_debug_printf(1,"     Requested: %s\n     Server: %s\n     Service: %s\n",
		 ci_method_string(req->type),
		 req->req_server,
		 req->service);
	  if(req->args){
	       ci_debug_printf(1,"     Args: %s\n",req->args);
	  }
	  else{
	       ci_debug_printf(1,"\n");
	  }
     }
     else{
	  ci_debug_printf(1,"     No Method\n");
     }

     ci_debug_printf(1,"\n\nHEADERS : \n");
     for(i=0;i<req->head->used;i++){
	  ci_debug_printf(1,"        %s\n",req->head->headers[i]);
     }
     ci_debug_printf(1,"\n\nEncapsulated Entities: \n");
     i=0;
     while(req->entities[i]!=NULL){
	  ci_debug_printf(1,"\t %s header at %d\n",
		       ci_encaps_entity_string(req->entities[i]->type),req->entities[i]->start);
	  if(req->entities[i]->type<ICAP_REQ_BODY){
	       ci_headers_list_t *h=(ci_headeris_list_t *)req->entities[i]->entity;
	       ci_debug_printf(1,"\t\t HEADERS : \n");
	       for(j=0;j<h->used;j++){
		    ci_debug_printf(1,"\t\t\t%d. %s\n",j,h->headers[j]);
	       }
	  }
	  i++;
     }
}
*/