diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-21 21:14:53 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-21 21:14:53 +0000 |
commit | 0baef3051c3d85c36f1a4a287ff65d59e8dd1a59 (patch) | |
tree | e30b12c2c3b39f4d651ce95353101453176ee99e /src/modules/m_sethost.cpp | |
parent | 4648c98fa1b221d8c9dff5dcae030d33ac12982f (diff) |
Enforce 64 char dns limits
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3277 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sethost.cpp')
-rw-r--r-- | src/modules/m_sethost.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index 149795696..7bc01e118 100644 --- a/src/modules/m_sethost.cpp +++ b/src/modules/m_sethost.cpp @@ -37,6 +37,11 @@ class cmd_sethost : public command_t void Handle (char **parameters, int pcnt, userrec *user) { + if (strlen(parameters[0]) > 64) + { + WriteServ(user->fd,"NOTICE %s :*** SETHOST: Host too long",user->nick); + return; + } for (unsigned int x = 0; x < strlen(parameters[0]); x++) { if (((tolower(parameters[0][x]) < 'a') || (tolower(parameters[0][x]) > 'z')) && (parameters[0][x] != '.')) |