From 5d52864609b3750bfeb7cda411802900aa190fc3 Mon Sep 17 00:00:00 2001 From: David Troy Date: Sat, 1 Jul 2006 15:43:37 +0000 Subject: Cleanup 1.21pre into 1.21 (release) git-svn-id: http://svncommunity.digium.com/svn/astmanproxy/trunk@129 f02b47b9-160a-0410-81a6-dc3441afb0ec --- src/csv.c | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) (limited to 'src/csv.c') diff --git a/src/csv.c b/src/csv.c index 94d9a00..bcd9a88 100644 --- a/src/csv.c +++ b/src/csv.c @@ -1,10 +1,11 @@ -/* Asterisk Manager Proxy - Copyright (c) 2005 David C. Troy +/* Asterisk Manager Proxy + Copyright (c) 2005-2006 David C. Troy - This program is free software, distributed under the terms of - the GNU General Public License. + This program is free software, distributed under the terms of + the GNU General Public License. - CSV I/O Handler + csv.c + CSV I/O Handler */ #include "astmanproxy.h" @@ -12,19 +13,19 @@ /* TODO: catch and expand/handle commas in output */ int _write(struct mansession *s, struct message *m) { - int i; - char outstring[MAX_LEN]; - - pthread_mutex_lock(&s->lock); - for (i=0; ihdrcount; i++) { - sprintf(outstring, "\"%s\"", m->headers[i]); - if (ihdrcount-1) - strcat(outstring, ", "); - ast_carefulwrite(s->fd, outstring, strlen(outstring), s->writetimeout); - } - ast_carefulwrite(s->fd, "\r\n\r\n", 4, s->writetimeout); - pthread_mutex_unlock(&s->lock); - - return 0; + int i; + char outstring[MAX_LEN]; + + pthread_mutex_lock(&s->lock); + for (i=0; ihdrcount; i++) { + sprintf(outstring, "\"%s\"", m->headers[i]); + if (ihdrcount-1) + strcat(outstring, ", "); + ast_carefulwrite(s->fd, outstring, strlen(outstring), s->writetimeout); + } + ast_carefulwrite(s->fd, "\r\n\r\n", 4, s->writetimeout); + pthread_mutex_unlock(&s->lock); + + return 0; } -- cgit