%
\membersection{wxSocketBase::SetLocal}\label{wxsocketbasesetlocal}
-\func{bool}{SetLocal}{\param{wxSockAddress\&}{ local}}
+\func{bool}{SetLocal}{\param{wxIPV4address\&}{ local}}
This function allows you to set the local address and port,
useful when an application needs to reuse a particular port. When
// addresses
virtual bool GetLocal(wxSockAddress& addr_man) const;
virtual bool GetPeer(wxSockAddress& addr_man) const;
- virtual bool SetLocal(wxSockAddress& local);
+ virtual bool SetLocal(wxIPV4address& local);
// base IO
virtual bool Close();
wxList m_states; // stack of states
bool m_interrupt; // interrupt ongoing wait operations?
bool m_beingDeleted; // marked for delayed deletion?
+ wxIPV4address m_localAddress; // bind to local address?
// pushback buffer
void *m_unread; // pushback buffer
return true;
}
-bool wxSocketBase::SetLocal(wxSockAddress& local)
+bool wxSocketBase::SetLocal(wxIPV4address& local)
{
GAddress* la = local.GetAddress();
+ // If the address is valid, save it for use when we call Connect
if (la && la->m_addr)
{
- m_socket->SetLocal(la);
+ m_localAddress = local;
return true;
}
m_socket->SetReusable();
}
+ // If no local address was passed and one has been set, use the one that was Set
+ if (!local && m_localAddress.GetAddress())
+ {
+ local = &m_localAddress;
+ }
+
// Bind to the local IP address and port, when provided
if (local)
{