Changeset 39783 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Jan 17, 2012 6:42:57 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/slirp_state.h
r39775 r39783 4 4 5 5 /* 6 * Copyright (C) 2006-201 0Oracle Corporation6 * Copyright (C) 2006-2012 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 69 69 typedef struct DNSMAPPINGENTRY 70 70 { 71 /* 72 * host name to map73 * Note: if pszCName isn't null pszPattern won't be used (see alias_dns.c for details)71 /** host name to map. 72 * @note If pszCName isn't null pszPattern won't be used (see alias_dns.c for 73 * details). 74 74 */ 75 75 char *pszCName; 76 /* pattern of hostnames to map to specifaied IP*/76 /** Pattern (simple) of hostnames to map to the specified IP. */ 77 77 char *pszPattern; 78 /** The IP Address. */ 78 79 uint32_t u32IpAddress; 80 /** List entry. */ 79 81 LIST_ENTRY(DNSMAPPINGENTRY) MapList; 80 82 } DNSMAPPINGENTRY, *PDNSMAPPINGENTRY;
Note:
See TracChangeset
for help on using the changeset viewer.