Index: /trunk/src/VBox/NetworkServices/NAT/VBoxNetLwipNAT.cpp
===================================================================
--- /trunk/src/VBox/NetworkServices/NAT/VBoxNetLwipNAT.cpp	(revision 87789)
+++ /trunk/src/VBox/NetworkServices/NAT/VBoxNetLwipNAT.cpp	(revision 87790)
@@ -191,11 +191,11 @@
 
 private:
-    int comInit();
-    int homeInit();
-    int logInit();
-    int ipv4Init();
-    int ipv4LoopbackMapInit();
-    int ipv6Init();
-    int eventsInit();
+    int initCom();
+    int initHome();
+    int initLog();
+    int initIPv4();
+    int initIPv4LoopbackMap();
+    int initIPv6();
+    int initComEvents();
 
     int getExtraData(com::Utf8Str &strValueOut, const char *pcszKey);
@@ -210,6 +210,6 @@
     static void reportErrorInfo(const com::ErrorInfo &info);
 
-    void createRawSock4();
-    void createRawSock6();
+    void initIPv4RawSock();
+    void initIPv6RawSock();
 
     static DECLCALLBACK(void) onLwipTcpIpInit(void *arg);
@@ -351,10 +351,10 @@
 
     /* Get the COM API set up. */
-    rc = comInit();
+    rc = initCom();
     if (RT_FAILURE(rc))
         return rc;
 
     /* Get the home folder location.  It's ok if it fails. */
-    homeInit();
+    initHome();
 
     /*
@@ -375,5 +375,5 @@
      * indeed exists we can create the release log file.
      */
-    logInit();
+    initLog();
 
     // resolver changes are reported on vbox but are retrieved from
@@ -384,13 +384,12 @@
 
     /* Get the settings related to IPv4. */
-    rc = ipv4Init();
+    rc = initIPv4();
     if (RT_FAILURE(rc))
         return rc;
 
     /* Get the settings related to IPv6. */
-    rc = ipv6Init();
+    rc = initIPv6();
     if (RT_FAILURE(rc))
         return rc;
-
 
 
@@ -412,5 +411,5 @@
     m_ProxyOptions.nameservers = getHostNameservers();
 
-    eventsInit();
+    initComEvents();
     /* end of COM initialization */
 
@@ -441,5 +440,5 @@
  * it ourselves and do the refactoring later.
  */
-int VBoxNetLwipNAT::comInit()
+int VBoxNetLwipNAT::initCom()
 {
     HRESULT hrc;
@@ -489,5 +488,5 @@
  * and for the TFTP root location.
  */
-int VBoxNetLwipNAT::homeInit()
+int VBoxNetLwipNAT::initHome()
 {
     HRESULT hrc;
@@ -524,5 +523,5 @@
  * onLwipTcpIpInit().
  */
-int VBoxNetLwipNAT::ipv4Init()
+int VBoxNetLwipNAT::initIPv4()
 {
     HRESULT hrc;
@@ -590,5 +589,5 @@
 
     /* Raw socket for ICMP. */
-    createRawSock4();
+    initIPv4RawSock();
 
 
@@ -616,5 +615,5 @@
 
     /* Make host's loopback(s) available from inside the natnet */
-    ipv4LoopbackMapInit();
+    initIPv4LoopbackMap();
 
     return VINF_SUCCESS;
@@ -628,5 +627,5 @@
  * caching dns proxy on 127.0.1.1 or 127.0.0.53.
  */
-int VBoxNetLwipNAT::ipv4LoopbackMapInit()
+int VBoxNetLwipNAT::initIPv4LoopbackMap()
 {
     HRESULT hrc;
@@ -740,5 +739,5 @@
  * onLwipTcpIpInit().
  */
-int VBoxNetLwipNAT::ipv6Init()
+int VBoxNetLwipNAT::initIPv6()
 {
     HRESULT hrc;
@@ -836,5 +835,5 @@
 
     /* Raw socket for ICMP. */
-    createRawSock6();
+    initIPv6RawSock();
 
 
@@ -1006,5 +1005,5 @@
  * Create and register API event listeners.
  */
-int VBoxNetLwipNAT::eventsInit()
+int VBoxNetLwipNAT::initComEvents()
 {
     /**
@@ -1045,5 +1044,5 @@
  * Create raw IPv4 socket for sending and snooping ICMP.
  */
-void VBoxNetLwipNAT::createRawSock4()
+void VBoxNetLwipNAT::initIPv4RawSock()
 {
     SOCKET icmpsock4 = INVALID_SOCKET;
@@ -1092,5 +1091,5 @@
  * Create raw IPv6 socket for sending and snooping ICMP6.
  */
-void VBoxNetLwipNAT::createRawSock6()
+void VBoxNetLwipNAT::initIPv6RawSock()
 {
     SOCKET icmpsock6 = INVALID_SOCKET;
@@ -2007,5 +2006,5 @@
  */
 /* static */
-int VBoxNetLwipNAT::logInit()
+int VBoxNetLwipNAT::initLog()
 {
     size_t cch;
