diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-11 10:01:57 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-11 10:01:57 +0200 |
commit | 38aa077ccb3bac7493c401dbd91b97037d208d54 (patch) | |
tree | e5319635d2f50c3b7aa5dca12b53144571d80027 /runtime/net.h | |
parent | 330120d1efb9c4a4a2aa3f5af529b87e57315d47 (diff) | |
download | rsyslog-38aa077ccb3bac7493c401dbd91b97037d208d54.tar.gz rsyslog-38aa077ccb3bac7493c401dbd91b97037d208d54.tar.bz2 rsyslog-38aa077ccb3bac7493c401dbd91b97037d208d54.zip |
imudp: add ability to specify SO_RCVBUF size (rcvbufSize parameter)
Diffstat (limited to 'runtime/net.h')
-rw-r--r-- | runtime/net.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/net.h b/runtime/net.h index 1b41c81c..36f9eb41 100644 --- a/runtime/net.h +++ b/runtime/net.h @@ -137,7 +137,7 @@ BEGINinterface(net) /* name must also be changed in ENDinterface macro! */ void (*PrintAllowedSenders)(int iListToPrint); void (*clearAllowedSenders)(uchar*); void (*debugListenInfo)(int fd, char *type); - int *(*create_udp_socket)(uchar *hostname, uchar *LogPort, int bIsServer); + int *(*create_udp_socket)(uchar *hostname, uchar *LogPort, int bIsServer, int rcvbuf); void (*closeUDPListenSockets)(int *finet); int (*isAllowedSender)(uchar *pszType, struct sockaddr *pFrom, const char *pszFromHost); /* deprecated! */ rsRetVal (*getLocalHostname)(uchar**); |