Home | History | Annotate | Download | only in udp

Lines Matching refs:address

22   // Initialize this socket as a server socket listening at |address|.
24 virtual int Listen(const IPEndPoint& address) = 0;
26 // Read from a socket and receive sender address information.
29 // |address| is a buffer provided by the caller for receiving the sender
30 // address information about the received data. This buffer must be kept
32 // |address_length| is a ptr to the length of the |address| buffer. This
33 // is an input parameter containing the maximum size |address| can hold
34 // and also an output parameter for the size of |address| upon completion.
37 // If ERR_IO_PENDING is returned, the caller must keep |buf|, |address|,
41 IPEndPoint* address,
47 // |address| is the recipient address.
48 // |address_length| is the size of the recipient address
51 // If ERR_IO_PENDING is returned, the caller must keep |buf| and |address|
55 const IPEndPoint& address,