diff options
| author | Gabor Adam Toth <tg@tgbit.net> | 2010-12-20 03:35:17 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2011-03-16 23:15:50 +0100 |
| commit | 71d8c371711f70e2d4b7ef9c908443a018cd6701 (patch) | |
| tree | 84df06cc6766bbec84b52de993d42e7f63d2715f /src | |
| parent | 52f59149adf4dbbb7c917225a7c66ac4aa053700 (diff) | |
| download | ngircd-71d8c371711f70e2d4b7ef9c908443a018cd6701.tar.gz ngircd-71d8c371711f70e2d4b7ef9c908443a018cd6701.zip | |
ClientUserNick setting
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/client.c | 5 | ||||
| -rw-r--r-- | src/ngircd/conf.c | 7 | ||||
| -rw-r--r-- | src/ngircd/conf.h | 1 |
3 files changed, 13 insertions, 0 deletions
diff --git a/src/ngircd/client.c b/src/ngircd/client.c index 11decc86..1a6ad931 100644 --- a/src/ngircd/client.c +++ b/src/ngircd/client.c @@ -335,6 +335,9 @@ Client_SetID( CLIENT *Client, const char *ID ) strlcpy( Client->id, ID, sizeof( Client->id )); + if (Conf_ClientUserNick) + strlcpy( Client->user, ID, sizeof( Client->user )); + /* Hash */ Client->hash = Hash( Client->id ); } /* Client_SetID */ @@ -348,6 +351,8 @@ Client_SetUser( CLIENT *Client, const char *User, bool Idented ) assert( Client != NULL ); assert( User != NULL ); + if (Conf_ClientUserNick) return; + if (Idented) { strlcpy(Client->user, User, sizeof(Client->user)); } else { diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c index 622cb9f8..487c1eb5 100644 --- a/src/ngircd/conf.c +++ b/src/ngircd/conf.c @@ -296,6 +296,7 @@ Conf_Test( void ) puts( "[GLOBAL]" ); printf(" Name = %s\n", Conf_ServerName); printf(" ClientHost = %s\n", Conf_ClientHost); + printf(" ClientUserNick = %s\n", yesno_to_str(Conf_ClientUserNick)); printf(" Info = %s\n", Conf_ServerInfo); #ifndef PAM printf(" Password = %s\n", Conf_ServerPwd); @@ -592,6 +593,7 @@ Set_Defaults(bool InitServers) strcpy(Conf_ServerName, ""); strcpy(Conf_ClientHost, ""); + Conf_ClientUserNick = false; snprintf(Conf_ServerInfo, sizeof Conf_ServerInfo, "%s %s", PACKAGE_NAME, PACKAGE_VERSION); strcpy(Conf_ServerPwd, ""); @@ -979,6 +981,11 @@ Handle_GLOBAL( int Line, char *Var, char *Arg ) Config_Error_TooLong( Line, Var ); return; } + if( strcasecmp( Var, "ClientUserNick" ) == 0 ) { + /* Use client nick name as user name */ + Conf_ClientUserNick = Check_ArgIsTrue( Arg ); + return; + } if( strcasecmp( Var, "Info" ) == 0 ) { /* Info text of server */ len = strlcpy( Conf_ServerInfo, Arg, sizeof( Conf_ServerInfo )); diff --git a/src/ngircd/conf.h b/src/ngircd/conf.h index 1747139d..10b64076 100644 --- a/src/ngircd/conf.h +++ b/src/ngircd/conf.h @@ -99,6 +99,7 @@ GLOBAL char Conf_ServerName[CLIENT_ID_LEN]; /** Hostname of the clients */ GLOBAL char Conf_ClientHost[CLIENT_ID_LEN]; +GLOBAL bool Conf_ClientUserNick; /** Server info text */ GLOBAL char Conf_ServerInfo[CLIENT_INFO_LEN]; |