From 7daa7fb278bb426baf7ae51ca8191ef1edbf81d8 Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Mon, 25 Apr 2005 18:37:16 +0000 Subject: [PATCH] removed Conn_UnsetOption() function. It was not used anymore. removed Conn_SetOption(). replaced its only call (in conn-zip.c) with Conn_OPTION_ADD() macro. --- src/ngircd/conn-func.c | 27 +-------------------------- src/ngircd/conn-func.h | 4 +--- src/ngircd/conn-zip.c | 4 ++-- 3 files changed, 4 insertions(+), 31 deletions(-) diff --git a/src/ngircd/conn-func.c b/src/ngircd/conn-func.c index 61516d68..974c151a 100644 --- a/src/ngircd/conn-func.c +++ b/src/ngircd/conn-func.c @@ -16,7 +16,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: conn-func.c,v 1.4 2005/03/19 18:43:48 fw Exp $"; +static char UNUSED id[] = "$Id: conn-func.c,v 1.5 2005/04/25 18:37:16 fw Exp $"; #include "imp.h" #include @@ -149,31 +149,6 @@ Conn_Next( CONN_ID Idx ) } /* Conn_Next */ -GLOBAL void -Conn_SetOption( CONN_ID Idx, int Option ) -{ - /* Option fuer Verbindung setzen. - * Initial sind alle Optionen _nicht_ gesetzt. */ - - assert( Idx > NONE ); - assert( Option != 0 ); - - My_Connections[Idx].options |= Option; -} /* Conn_SetOption */ - - -GLOBAL void -Conn_UnsetOption( CONN_ID Idx, int Option ) -{ - /* Option fuer Verbindung loeschen */ - - assert( Idx > NONE ); - assert( Option != 0 ); - - My_Connections[Idx].options &= ~Option; -} /* Conn_UnsetOption */ - - GLOBAL int Conn_Options( CONN_ID Idx ) { diff --git a/src/ngircd/conn-func.h b/src/ngircd/conn-func.h index 92c65bb5..217ee3ec 100644 --- a/src/ngircd/conn-func.h +++ b/src/ngircd/conn-func.h @@ -8,7 +8,7 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: conn-func.h,v 1.3 2005/04/18 21:08:31 fw Exp $ + * $Id: conn-func.h,v 1.4 2005/04/25 18:37:16 fw Exp $ * * Connection management: Global functions (header) */ @@ -47,8 +47,6 @@ GLOBAL void Conn_SetFlag PARAMS(( CONN_ID Idx, int Flag )); GLOBAL CONN_ID Conn_First PARAMS(( void )); GLOBAL CONN_ID Conn_Next PARAMS(( CONN_ID Idx )); -GLOBAL void Conn_SetOption PARAMS(( CONN_ID Idx, int Option )); -GLOBAL void Conn_UnsetOption PARAMS(( CONN_ID Idx, int Option )); GLOBAL int Conn_Options PARAMS(( CONN_ID Idx )); GLOBAL void Conn_ResetWCounter PARAMS(( void )); diff --git a/src/ngircd/conn-zip.c b/src/ngircd/conn-zip.c index 6ed53d60..5fb936ca 100644 --- a/src/ngircd/conn-zip.c +++ b/src/ngircd/conn-zip.c @@ -19,7 +19,7 @@ #ifdef ZLIB -static char UNUSED id[] = "$Id: conn-zip.c,v 1.6 2005/03/19 18:43:48 fw Exp $"; +static char UNUSED id[] = "$Id: conn-zip.c,v 1.7 2005/04/25 18:37:16 fw Exp $"; #include "imp.h" #include @@ -72,7 +72,7 @@ Zip_InitConn( CONN_ID Idx ) My_Connections[Idx].zip.bytes_out = My_Connections[Idx].bytes_out; Log( LOG_INFO, "Enabled link compression (zlib) on connection %d.", Idx ); - Conn_SetOption( Idx, CONN_ZIP ); + Conn_OPTION_ADD( &My_Connections[Idx], CONN_ZIP ); return true; } /* Zip_InitConn */ -- 2.39.2