From a213f1f641583f5cc09b0acf90dad9df305a88ca Mon Sep 17 00:00:00 2001 From: teodor Date: Thu, 29 Nov 2007 18:54:33 +0000 Subject: [PATCH] Add comments, fix binding of topd --- sendtop.c | 4 ++++ topd.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/sendtop.c b/sendtop.c index 4a48662..ce24d62 100644 --- a/sendtop.c +++ b/sendtop.c @@ -90,6 +90,10 @@ getmeminfo(TCMsgTop *m) { #define MEMBUFSIZE 256 +/* + * if str mathes by pattern returns poineter to begin of value + * and NULL in opposite case + */ static char* cmpPattern( char *str, char *pattern ) { while( *str != '\0' && *str == *pattern ) { diff --git a/topd.c b/topd.c index f532a7d..5dedced 100644 --- a/topd.c +++ b/topd.c @@ -120,7 +120,7 @@ main( int argc, char *argv[] ) { cfg.mu = allocUnits(n); TC_addConnection( &cfg.pool, TC_fillConnection(NULL, NULL, listenport) ); - TC_ClientInitConnection( cfg.pool.conn[0], NULL, listenport); + TC_ClientInitConnection( cfg.pool.conn[0], host, listenport); cfg.pool.conn[0]->state = CS_READ; TC_addConnection( &cfg.pool, TC_fillConnection(NULL, NULL, listenport) ); -- 2.37.3