TCPSocket.open()

This API is available on Firefox OS for privileged or certified applications only.

Summary

The open method is used to open a TCP connection to a given server on a given port.

Syntax

JavaScript
var instanceOfTCPSocket = navigator.mozTCPSocket.open(host, port[, options]);

Parameters

host
A string representing the host name of the server to connect to.
port
A number representing the port to connect to.
options

An object specifying the details of the socket. This object expects one or more of the following properties:

  • useSecureTransport: use the value to create an SSL socket. Defaults to false.
  • binaryType: a string with the value string (default) or arraybuffer. If the latter is used the argument for the send() method must be an ArrayBuffer and the data received from the server will be available as an ArrayBuffer. Otherwise, a string is expected.

Note: In an older verson of the API (supported in Firefox 1.0.1), useSecureTransport was called useSSL. You can pass both the older and newer options in if wished, to avoid breaking old versions of Firefox OS. See here for an example.

Returns

It returns a new TCPSocket object connected to the provided host on the provided port.

Example

JavaScript
var socket = navigator.mozTCPSocket.open("www.mozilla.org", 80);

Specification

Not part of any specification yet; however, this API is discussed at W3C as part of the System Applications Working Group under the Raw Sockets proposal.

See also

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/tcpsocket/open

API B2G Firefox OS Method Reference Référence TCP Socket