Home | History | Annotate | Download | only in udp

Lines Matching refs:address

81 int UDPSocketLibevent::GetPeerAddress(IPEndPoint* address) const {
83 DCHECK(address);
93 scoped_ptr<IPEndPoint> address(new IPEndPoint());
94 if (!address->FromSockAddr(addr, addr_len))
96 remote_address_.reset(address.release());
99 *address = *remote_address_;
103 int UDPSocketLibevent::GetLocalAddress(IPEndPoint* address) const {
105 DCHECK(address);
115 scoped_ptr<IPEndPoint> address(new IPEndPoint());
116 if (!address->FromSockAddr(addr, addr_len))
118 local_address_.reset(address.release());
121 *address = *local_address_;
133 IPEndPoint* address,
142 int nread = InternalRecvFrom(buf, buf_len, address);
155 recv_from_address_ = address;
168 const IPEndPoint& address,
170 return SendToOrWrite(buf, buf_len, &address, callback);
175 const IPEndPoint* address,
183 int nwrite = InternalSendTo(buf, buf_len, address);
202 if (address) {
203 send_to_address_.reset(new IPEndPoint(*address));
209 int UDPSocketLibevent::Connect(const IPEndPoint& address) {
212 int rv = CreateSocket(address);
219 if (!address.ToSockAddr(addr, &addr_len))
226 remote_address_.reset(new IPEndPoint(address));
230 int UDPSocketLibevent::Bind(const IPEndPoint& address) {
233 int rv = CreateSocket(address);
240 if (!address.ToSockAddr(addr, &addr_len))
283 int UDPSocketLibevent::CreateSocket(const IPEndPoint& address) {
284 socket_ = socket(address.GetFamily(), SOCK_DGRAM, 0);
315 IPEndPoint* address) {
335 if (address) {
336 if (!address->FromSockAddr(addr, addr_len))
346 const IPEndPoint* address) {
351 if (!address) {
355 if (!address->ToSockAddr(addr, &addr_len))