Changeset 57358 in vbox for trunk/src/VBox/HostDrivers/VBoxNetAdp/solaris
- Timestamp:
- Aug 14, 2015 3:16:38 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102121
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetAdp/solaris/VBoxNetAdp-solaris.c
r56293 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #define LOG_GROUP LOG_GROUP_NET_ADP_DRV 31 32 #include <VBox/log.h> … … 55 56 #include "../VBoxNetAdpInternal.h" 56 57 57 /******************************************************************************* 58 * Defined Constants And Macros * 59 *******************************************************************************/ 58 59 /********************************************************************************************************************************* 60 * Defined Constants And Macros * 61 *********************************************************************************************************************************/ 60 62 #define DEVICE_NAME "vboxnet" 61 63 /** The module descriptions as seen in 'modinfo'. */ … … 63 65 64 66 65 /******************************************************************************* 66 * Internal Functions *67 ******************************************************************************* /67 /********************************************************************************************************************************* 68 * Internal Functions * 69 *********************************************************************************************************************************/ 68 70 static int VBoxNetAdpSolarisAttach(dev_info_t *pDip, ddi_attach_cmd_t enmCmd); 69 71 static int VBoxNetAdpSolarisDetach(dev_info_t *pDip, ddi_detach_cmd_t enmCmd); … … 187 189 188 190 189 /******************************************************************************* 190 * Global Variables *191 ******************************************************************************* /191 /********************************************************************************************************************************* 192 * Global Variables * 193 *********************************************************************************************************************************/ 192 194 /** The default ethernet broadcast address */ 193 195 static uchar_t achBroadcastAddr[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; … … 204 206 205 207 206 /******************************************************************************* 207 * Internal Functions *208 ******************************************************************************* /208 /********************************************************************************************************************************* 209 * Internal Functions * 210 *********************************************************************************************************************************/ 209 211 static int vboxNetAdpSolarisGenerateMac(PRTMAC pMac); 210 212 static int vboxNetAdpSolarisSetMacAddress(gld_mac_info_t *pMacInfo, unsigned char *pszMacAddr);
Note:
See TracChangeset
for help on using the changeset viewer.