summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
b6e96fa)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60566
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
+// this example is currently written to use only IP or only IPv6 sockets, it
+// should be extended to allow using either in the future
+#if wxUSE_IPV6
+ typedef wxIPV6address IPaddress;
+#else
+ typedef wxIPV4address IPaddress;
+#endif
+
// --------------------------------------------------------------------------
// resources
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// resources
// --------------------------------------------------------------------------
delete wxLog::SetActiveTarget(new wxLogTextCtrl(m_text));
// Create the address - defaults to localhost:0 initially
delete wxLog::SetActiveTarget(new wxLogTextCtrl(m_text));
// Create the address - defaults to localhost:0 initially
-#if wxUSE_IPV6
- wxIPV6address addr;
-#else
- wxIPV4address addr;
-#endif
+ wxLogMessage("Creating server at %s:%u", addr.IPAddress(), addr.Service());
+
// Create the socket
m_server = new wxSocketServer(addr);
// Create the socket
m_server = new wxSocketServer(addr);
wxLogMessage("Could not listen at the specified port !");
return;
}
wxLogMessage("Could not listen at the specified port !");
return;
}
+
+ IPaddress addrReal;
+ if ( !m_server->GetLocal(addrReal) )
+ wxLogMessage("ERROR: couldn't get the address we bound to");
- {
- wxLogMessage("Server listening.");
- }
+ wxLogMessage("Server listening at %s:%u",
+ addrReal.IPAddress(), addrReal.Service());
// Setup the event handler and subscribe to connection events
m_server->SetEventHandler(*this, SERVER_ID);
// Setup the event handler and subscribe to connection events
m_server->SetEventHandler(*this, SERVER_ID);
- wxLogMessage("New client connection accepted");
+ IPaddress addr;
+ if ( !sock->GetPeer(addr) )
+ wxLogMessage("New connection from unknown client accepted.");
+ else
+ wxLogMessage("New client connection from %s:%u accepted",
+ addr.IPAddress(), addr.Service());