Home | History | Annotate | Download | only in udp

Lines Matching refs:address

17 int UDPServerSocket::Listen(const IPEndPoint& address) {
18 return socket_.Bind(address);
23 IPEndPoint* address,
25 return socket_.RecvFrom(buf, buf_len, address, callback);
30 const IPEndPoint& address,
32 return socket_.SendTo(buf, buf_len, address, callback);
39 int UDPServerSocket::GetPeerAddress(IPEndPoint* address) const {
40 return socket_.GetPeerAddress(address);
43 int UDPServerSocket::GetLocalAddress(IPEndPoint* address) const {
44 return socket_.GetLocalAddress(address);