Articles tagged: TCP Socket
Found 26 documents
- Mozilla/B2G_OS/API/Navigator/mozTCPSocket Returns a TCPSocket object you can use to open other sockets.
- Mozilla/B2G_OS/API/TCPServerSocket The TCPServerSocket interface provides an API to handle a persistent server that will listen for ...
- Mozilla/B2G_OS/API/TCPServerSocket/close The close method cleanly closes the server socket.
- Mozilla/B2G_OS/API/TCPServerSocket/localPort The localP ort property returns the port number listened to by the server socket.
- Mozilla/B2G_OS/API/TCPServerSocket/onconnect The onconnect property is used to specify a callback handler to deal with new incoming ...
- Mozilla/B2G_OS/API/TCPServerSocket/onerror The onerror property is used to specify a callback handler to deal with errors from the server ...
- Mozilla/B2G_OS/API/TCPSocket The TCPSocket interface provides access to a raw TCP socket.
- Mozilla/B2G_OS/API/TCPSocket/binaryType The binaryType indicates the type of data expected by the send() method on this socket.
- Mozilla/B2G_OS/API/TCPSocket/bufferedAmount The bufferedAmount represents the number of bytes which have previously been buffered by calls ...
- Mozilla/B2G_OS/API/TCPSocket/close The close method cleanly closes the connection.
- Mozilla/B2G_OS/API/TCPSocket/host The host property returns the host reachable by the socket.
- Mozilla/B2G_OS/API/TCPSocket/listen The listen method is used to listen on a given port on the device.
- Mozilla/B2G_OS/API/TCPSocket/onclose The onclose property is used to specify an event handler to receive close events. Those events ...
- Mozilla/B2G_OS/API/TCPSocket/ondata The ondata property is used to specify an event handler to receive data events. Those events are ...
- Mozilla/B2G_OS/API/TCPSocket/ondrain The ondrain property is used to specify an event handler to receive drain events. Those events ...
- Mozilla/B2G_OS/API/TCPSocket/onerror The onerror property is used to specify an event handler to receive error events. Those events ...
- Mozilla/B2G_OS/API/TCPSocket/onopen The onopen property is used to specify an event handler to receive open events. Those events are ...
- Mozilla/B2G_OS/API/TCPSocket/open The open method is used to open a TCP connection to a given server on a given port.
- Mozilla/B2G_OS/API/TCPSocket/port The port property returns the port number used by the socket.
- Mozilla/B2G_OS/API/TCPSocket/readyState The readyState property indicates the current state of the socket.
- Mozilla/B2G_OS/API/TCPSocket/resume The resume method resumes reading incoming data and allows the data event to be triggered again.
- Mozilla/B2G_OS/API/TCPSocket/send The send method is used to buffer data to be sent to the server.
- Mozilla/B2G_OS/API/TCPSocket/ssl The ssl property allows to know if the socket is an SSL socket (true) or not (false).
- Mozilla/B2G_OS/API/TCPSocket/suspend The suspend method pauses reading incoming data and prevents the data event from being triggered ...
- Mozilla/B2G_OS/API/TCPSocket/upgradeToSecure The upgradeToSecure method allows turning a TCP non secured connection into a secured one.
- Mozilla/B2G_OS/API/TPC_Socket_API The TCPSocket API offers a whole API to open and use a TCP connection. This allows app makers to ...