Changeset 39471 in vbox for trunk/src/VBox
- Timestamp:
- Nov 30, 2011 8:53:22 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/slirp.c
r39467 r39471 605 605 tcp_sndspace = 64 * _1K; 606 606 tcp_rcvspace = 64 * _1K; 607 /** 608 * Assignment here has only meaning, to avoid additional noise in release log. 609 * The value's assigned from DrvNAT in function slirp_set_somaxconi by reading value of CFGM key 610 * "VBoxInternal/Devices/<adapter name>/0/LUN#0/Config/SoMaxConnection" or to 611 * default value 10 (xTracker/5983) in case value for the key wasn't found. 607 608 /* 609 * Use the same default here as in DevNAT.cpp (SoMaxConnection CFGM value) 610 * to avoid release log noise. 612 611 */ 613 612 pData->soMaxConn = 10; … … 2169 2168 return 1; 2170 2169 } 2170 2171 2171 /** 2172 2172 * add entry to the arp cache 2173 2173 * @note: this is helper function, slirp_arp_cache_update_or_add should be used. 2174 2174 */ 2175 2176 2175 static inline void slirp_arp_cache_add(PNATState pData, uint32_t ip, const uint8_t *ether) 2177 2176 {
Note:
See TracChangeset
for help on using the changeset viewer.