Changeset 58631 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Nov 10, 2015 12:10:28 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104023
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/tcp_subr.c
r58077 r58631 426 426 { 427 427 case CTL_DNS: 428 /* 429 * TCP DNS proxy. We only support "forwarding" to 430 * single server. We don't have infrastructure in 431 * place to re-try connections to other servers. 432 */ 433 if ( pData->fUseDnsProxy 434 && so->so_fport == RT_H2N_U16_C(53)) 435 { 436 struct dns_entry *ns = TAILQ_LAST(&pData->pDnsList, dns_list_head); 437 if (ns != NULL) 438 { 439 addr.sin_addr = ns->de_addr; 440 break; 441 } 442 } 443 /* FALLTHROUGH */ 428 444 case CTL_ALIAS: 429 445 default:
Note:
See TracChangeset
for help on using the changeset viewer.