Changeset 22670 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Sep 1, 2009 2:26:46 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/ip_output.c
r22664 r22670 246 246 ip->ip_sum = cksum(m, hlen); 247 247 248 STAM_PROFILE_START(&pData->StatALIAS_output, a); 249 rc = LibAliasOut((m->m_la ? m->m_la : pData->proxy_alias), 250 mtod(m, char *), m->m_len); 251 Log2(("NAT: LibAlias return %d\n", rc)); 252 STAM_PROFILE_STOP(&pData->StatALIAS_output, a); 248 { 249 STAM_PROFILE_START(&pData->StatALIAS_output, a); 250 rc = LibAliasOut((m->m_la ? m->m_la : pData->proxy_alias), 251 mtod(m, char *), m->m_len); 252 Log2(("NAT: LibAlias return %d\n", rc)); 253 STAM_PROFILE_STOP(&pData->StatALIAS_output, a); 254 } 253 255 254 256 sendorfree:
Note:
See TracChangeset
for help on using the changeset viewer.