Changeset 21878 in vbox for trunk/src/VBox/Main/solaris
- Timestamp:
- Jul 30, 2009 12:42:08 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50525
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/solaris/NetIf-solaris.cpp
r19433 r21878 59 59 static void vboxSolarisAddHostIface(char *pszIface, int Instance, void *pvHostNetworkInterfaceList) 60 60 { 61 std::list<ComObjPtr <HostNetworkInterface> > *pList = (std::list<ComObjPtr<HostNetworkInterface> > *)pvHostNetworkInterfaceList;61 std::list<ComObjPtr<HostNetworkInterface> > *pList = (std::list<ComObjPtr<HostNetworkInterface> > *)pvHostNetworkInterfaceList; 62 62 Assert(pList); 63 63 … … 244 244 } 245 245 246 static bool vboxSolarisSortNICList(const ComObjPtr <HostNetworkInterface> Iface1, const ComObjPtr<HostNetworkInterface> Iface2)246 static bool vboxSolarisSortNICList(const ComObjPtr<HostNetworkInterface> Iface1, const ComObjPtr<HostNetworkInterface> Iface2) 247 247 { 248 248 Bstr Iface1Str; … … 255 255 } 256 256 257 static bool vboxSolarisSameNIC(const ComObjPtr <HostNetworkInterface> Iface1, const ComObjPtr<HostNetworkInterface> Iface2)257 static bool vboxSolarisSameNIC(const ComObjPtr<HostNetworkInterface> Iface1, const ComObjPtr<HostNetworkInterface> Iface2) 258 258 { 259 259 Bstr Iface1Str; … … 286 286 # endif /* VBOX_SOLARIS_NSL_RESOLVED */ 287 287 288 int NetIfList(std::list <ComObjPtr 288 int NetIfList(std::list <ComObjPtr<HostNetworkInterface> > &list) 289 289 { 290 290 … … 388 388 389 389 #else 390 int NetIfList(std::list <ComObjPtr 390 int NetIfList(std::list <ComObjPtr<HostNetworkInterface> > &list) 391 391 { 392 392 return VERR_NOT_IMPLEMENTED;
Note:
See TracChangeset
for help on using the changeset viewer.