diff options
| author | 2004-04-11 16:57:13 +0000 | |
|---|---|---|
| committer | 2004-04-11 16:57:13 +0000 | |
| commit | 5ceee7dfb26c2874c8b70e152b9a9fc451e90b9c (patch) | |
| tree | 37b76d742af178b1be627a42d8b450673afc40fd /src/connection.cpp | |
| parent | Fixes to packet acks (diff) | |
Attempted fixes for UDP race conditions
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@534 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/connection.cpp')
| -rw-r--r-- | src/connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection.cpp b/src/connection.cpp index 2926ce754..78b9ed17a 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -153,7 +153,7 @@ bool connection::SendPacket(char *message, char* host, int port, long ourkey) { fd_set sfd; timeval tval; - tval.tv_usec = 1000; + tval.tv_usec = 100; tval.tv_sec = 0; FD_ZERO(&sfd); FD_SET(fd,&sfd); |
