9 lines
162 B
C++
9 lines
162 B
C++
|
#include "udp_client_libevent.h"
|
||
|
|
||
|
UdpClientLibevent::UdpClientLibevent(std::string ipaddr, uint32_t port)
|
||
|
{
|
||
|
this->m_bind_ip = ipaddr;
|
||
|
this->m_port = m_port;
|
||
|
|
||
|
}
|