From 988c34b019c039575e279424b7e676caeb044e35 Mon Sep 17 00:00:00 2001 From: Eric des Courtis Date: Thu, 18 Dec 2008 00:31:07 +0000 Subject: [PATCH] Removed debug information. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10866 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_http/http_req.c | 29 ------------------------ 1 file changed, 29 deletions(-) diff --git a/src/mod/applications/mod_http/http_req.c b/src/mod/applications/mod_http/http_req.c index 0e650b526a..89f5486406 100644 --- a/src/mod/applications/mod_http/http_req.c +++ b/src/mod/applications/mod_http/http_req.c @@ -308,29 +308,6 @@ int http_parse_response(char *buf, ssize_t buf_len, http_response_t *response) sm.buf = buf; sm.buf_len = buf_len; - fprintf( - stderr, - "ERRORS\n" - "VERSION = %d\n" - "STATUS_CODE = %d\n" - "PHRASE = %d\n" - "HEADER = %d\n" - "NEWLINE = %d\n" - "SYNTAX_ERROR = %d\n", - VERSION, - STATUS_CODE, - PHRASE, - HEADER, - NEWLINE, - SYNTAX_ERROR - ); - - fprintf( - stderr, - "buf = \"%s\"\n", - buf - ); - pos = sm.pos; token = get_next_token(&sm); if(token != VERSION){ @@ -403,12 +380,6 @@ int http_parse_response(char *buf, ssize_t buf_len, http_response_t *response) if(token != HEADER && token != PHRASE && token != STATUS_CODE) break; }while(token != SYNTAX_ERROR); - fprintf( - stderr, - "HEADERS = %d\n", - nt - ); - if(nt != 0){ response->headers = (http_header_t *)malloc(sizeof(http_header_t)*nt); if(response->headers == NULL){