mirror of
https://git.openafs.org/openafs.git
synced 2025-01-20 07:51:00 +00:00
windows-rx-udpbufsize-20080809
LICENSE MIT Set UdpBufSize to 256K. Add RxUdpBufSize registry value to permit runtime configuration.
This commit is contained in:
parent
4eea9caac3
commit
cd316ff51c
@ -560,6 +560,7 @@ int afsd_InitCM(char **reasonP)
|
||||
DWORD dwValue;
|
||||
DWORD rx_enable_peer_stats;
|
||||
DWORD rx_enable_process_stats;
|
||||
DWORD rx_udpbufsize = -1;
|
||||
long traceBufSize;
|
||||
long maxcpus;
|
||||
long ltt, ltto;
|
||||
@ -1062,6 +1063,15 @@ int afsd_InitCM(char **reasonP)
|
||||
if (rx_extraPackets)
|
||||
afsi_log("RX extraPackets is %d", rx_extraPackets);
|
||||
|
||||
dummyLen = sizeof(rx_udpbufsize);
|
||||
code = RegQueryValueEx(parmKey, "RxUdpBufSize", NULL, NULL,
|
||||
(BYTE *) &rx_udpbufsize, &dummyLen);
|
||||
if (code != ERROR_SUCCESS) {
|
||||
rx_udpbufsize = 256*1024;
|
||||
}
|
||||
if (rx_udpbufsize)
|
||||
afsi_log("RX udpbufsize is %d", rx_udpbufsize);
|
||||
|
||||
dummyLen = sizeof(rx_mtu);
|
||||
code = RegQueryValueEx(parmKey, "RxMaxMTU", NULL, NULL,
|
||||
(BYTE *) &rx_mtu, &dummyLen);
|
||||
@ -1286,6 +1296,11 @@ int afsd_InitCM(char **reasonP)
|
||||
afsi_log("rx_SetMaxMTU %d successful", rx_mtu);
|
||||
}
|
||||
|
||||
if ( rx_udpbufsize != -1 ) {
|
||||
rx_SetUdpBufSize(rx_udpbufsize);
|
||||
afsi_log("rx_SetUdpBufSize %d", rx_udpbufsize);
|
||||
}
|
||||
|
||||
/* initialize RX, and tell it to listen to the callbackport,
|
||||
* which is used for callback RPC messages.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user