From: Patrick M. <ume...@us...> - 2006-12-28 14:27:28
|
Update of /cvsroot/radmind/radmind In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv28436 Modified Files: command.c Log Message: Made capability reporting more granular. This will allow for support of additional capabilities. Index: command.c =================================================================== RCS file: /cvsroot/radmind/radmind/command.c,v retrieving revision 1.131 retrieving revision 1.132 diff -C2 -d -r1.131 -r1.132 *** command.c 22 Nov 2006 18:36:43 -0000 1.131 --- command.c 28 Dec 2006 14:27:21 -0000 1.132 *************** *** 1525,1529 **** rap_extensions ? "-" : " ", hostname, version ); if ( rap_extensions ) { ! snet_writef( sn, "200 CAPA ZLIB\r\n" ); } --- 1525,1535 ---- rap_extensions ? "-" : " ", hostname, version ); if ( rap_extensions ) { ! snet_writef( sn, "200 CAPA" ); ! #ifdef HAVE_ZLIB ! if ( max_zlib_level > 0 ) { ! snet_writef( sn, " ZLIB\r\n" ); ! } ! #endif /* HAVE_ZLIB */ ! snet_writef( sn, "\r\n" ); } |