Home | History | Annotate | Download | only in cpp

Lines Matching defs:UDPSocket

21 /// The <code>UDPSocket</code> class provides UDP socket operations.
28 class UDPSocket : public Resource {
30 /// Default constructor for creating an is_null() <code>UDPSocket</code>
32 UDPSocket();
34 /// A constructor used to create a <code>UDPSocket</code> object.
38 explicit UDPSocket(const InstanceHandle& instance);
44 UDPSocket(PassRef, PP_Resource resource);
46 /// The copy constructor for <code>UDPSocket</code>.
48 /// @param[in] other A reference to another <code>UDPSocket</code>.
49 UDPSocket(const UDPSocket& other);
52 virtual ~UDPSocket();
54 /// The assignment operator for <code>UDPSocket</code>.
56 /// @param[in] other A reference to another <code>UDPSocket</code>.
58 /// @return A reference to this <code>UDPSocket</code> object.
59 UDPSocket& operator=(const UDPSocket& other);