Bug 1526591 - Remove devtools.inspector.shapesHighlighter.enabled pref. r=rcaliman
[gecko.git] / netwerk / base / nsIServerSocket.idl
blob61e38602ff92f6c20a3389d56ee7b66aee4a3c46
1 /* vim:set ts=4 sw=4 et cindent: */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #include "nsISupports.idl"
8 interface nsIFile;
9 interface nsIServerSocketListener;
10 interface nsISocketTransport;
12 native PRNetAddr(union PRNetAddr);
13 [ptr] native PRNetAddrPtr(union PRNetAddr);
15 typedef unsigned long nsServerSocketFlag;
17 /**
18 * nsIServerSocket
20 * An interface to a server socket that can accept incoming connections.
22 [scriptable, uuid(7a9c39cb-a13f-4eef-9bdf-a74301628742)]
23 interface nsIServerSocket : nsISupports
25 /**
26 * @name Server Socket Flags
27 * These flags define various socket options.
28 * @{
30 /// The server socket will only respond to connections on the
31 /// local loopback interface. Otherwise, it will accept connections
32 /// from any interface. To specify a particular network interface,
33 /// use initWithAddress.
34 const nsServerSocketFlag LoopbackOnly = 0x00000001;
35 /// The server socket will not be closed when Gecko is set
36 /// offline.
37 const nsServerSocketFlag KeepWhenOffline = 0x00000002;
38 /** @} */
40 /**
41 * init
43 * This method initializes a server socket.
45 * @param aPort
46 * The port of the server socket. Pass -1 to indicate no preference,
47 * and a port will be selected automatically.
48 * @param aLoopbackOnly
49 * If true, the server socket will only respond to connections on the
50 * local loopback interface. Otherwise, it will accept connections
51 * from any interface. To specify a particular network interface,
52 * use initWithAddress.
53 * @param aBackLog
54 * The maximum length the queue of pending connections may grow to.
55 * This parameter may be silently limited by the operating system.
56 * Pass -1 to use the default value.
58 void init(in long aPort,
59 in boolean aLoopbackOnly,
60 in long aBackLog);
62 /**
63 * the same as init(), but initializes an IPv6 server socket
65 void initIPv6(in long aPort,
66 in boolean aLoopbackOnly,
67 in long aBackLog);
69 /**
70 * initSpecialConnection
72 * This method initializes a server socket and offers the ability to have
73 * that socket not get terminated if Gecko is set offline.
75 * @param aPort
76 * The port of the server socket. Pass -1 to indicate no preference,
77 * and a port will be selected automatically.
78 * @param aFlags
79 * Flags for the socket.
80 * @param aBackLog
81 * The maximum length the queue of pending connections may grow to.
82 * This parameter may be silently limited by the operating system.
83 * Pass -1 to use the default value.
85 void initSpecialConnection(in long aPort,
86 in nsServerSocketFlag aFlags,
87 in long aBackLog);
90 /**
91 * initWithAddress
93 * This method initializes a server socket, and binds it to a particular
94 * local address (and hence a particular local network interface).
96 * @param aAddr
97 * The address to which this server socket should be bound.
98 * @param aBackLog
99 * The maximum length the queue of pending connections may grow to.
100 * This parameter may be silently limited by the operating system.
101 * Pass -1 to use the default value.
103 [noscript] void initWithAddress([const] in PRNetAddrPtr aAddr, in long aBackLog);
106 * initWithFilename
108 * This method initializes a Unix domain or "local" server socket. Such
109 * a socket has a name in the filesystem, like an ordinary file. To
110 * connect, a client supplies the socket's filename, and the usual
111 * permission checks on socket apply.
113 * This makes Unix domain sockets useful for communication between the
114 * programs being run by a specific user on a single machine: the
115 * operating system takes care of authentication, and the user's home
116 * directory or profile directory provide natural per-user rendezvous
117 * points.
119 * Since Unix domain sockets are always local to the machine, they are
120 * not affected by the nsIIOService's 'offline' flag.
122 * The system-level socket API may impose restrictions on the length of
123 * the filename that are stricter than those of the underlying
124 * filesystem. If the file name is too long, this returns
125 * NS_ERROR_FILE_NAME_TOO_LONG.
127 * All components of the path prefix of |aPath| must name directories;
128 * otherwise, this returns NS_ERROR_FILE_NOT_DIRECTORY.
130 * This call requires execute permission on all directories containing
131 * the one in which the socket is to be created, and write and execute
132 * permission on the directory itself. Otherwise, this returns
133 * NS_ERROR_CONNECTION_REFUSED.
135 * This call creates the socket's directory entry. There must not be
136 * any existing entry with the given name. If there is, this returns
137 * NS_ERROR_SOCKET_ADDRESS_IN_USE.
139 * On systems that don't support Unix domain sockets at all, this
140 * returns NS_ERROR_SOCKET_ADDRESS_NOT_SUPPORTED.
142 * @param aPath nsIFile
143 * The file name at which the socket should be created.
145 * @param aPermissions unsigned long
146 * Unix-style permission bits to be applied to the new socket.
148 * Note about permissions: Linux's unix(7) man page claims that some
149 * BSD-derived systems ignore permissions on UNIX-domain sockets;
150 * NetBSD's bind(2) man page agrees, but says it does check now (dated
151 * 2005). POSIX has required 'connect' to fail if write permission on
152 * the socket itself is not granted since 2003 (Issue 6). NetBSD says
153 * that the permissions on the containing directory (execute) have
154 * always applied, so creating sockets in appropriately protected
155 * directories should be secure on both old and new systems.
157 void initWithFilename(in nsIFile aPath, in unsigned long aPermissions,
158 in long aBacklog);
161 * initWithAbstractAddress
163 * This mehtod is a flavor of initWithFilename method. This initializes
164 * a UNIX domain socket that uses abstract socket address.
165 * This socket type is only supported on Linux and Android.
167 * On systems that don't support this type's UNIX domain sockets at all,
168 * this returns NS_ERROR_SOCKET_ADDRESS_NOT_SUPPORTED.
170 * @param aName
171 * The abstract socket address which the socket should be created.
172 * @param aBacklog
173 * The maximum length the queue of pending connections may grow to.
175 void initWithAbstractAddress(in AUTF8String aName,
176 in long aBacklog);
179 * close
181 * This method closes a server socket. This does not affect already
182 * connected client sockets (i.e., the nsISocketTransport instances
183 * created from this server socket). This will cause the onStopListening
184 * event to asynchronously fire with a status of NS_BINDING_ABORTED.
186 void close();
189 * asyncListen
191 * This method puts the server socket in the listening state. It will
192 * asynchronously listen for and accept client connections. The listener
193 * will be notified once for each client connection that is accepted. The
194 * listener's onSocketAccepted method will be called on the same thread
195 * that called asyncListen (the calling thread must have a nsIEventTarget).
197 * The listener will be passed a reference to an already connected socket
198 * transport (nsISocketTransport). See below for more details.
200 * @param aListener
201 * The listener to be notified when client connections are accepted.
203 void asyncListen(in nsIServerSocketListener aListener);
206 * Returns the port of this server socket.
208 readonly attribute long port;
211 * Returns the address to which this server socket is bound. Since a
212 * server socket may be bound to multiple network devices, this address
213 * may not necessarily be specific to a single network device. In the
214 * case of an IP socket, the IP address field would be zerod out to
215 * indicate a server socket bound to all network devices. Therefore,
216 * this method cannot be used to determine the IP address of the local
217 * system. See nsIDNSService::myHostName if this is what you need.
219 [noscript] PRNetAddr getAddress();
223 * nsIServerSocketListener
225 * This interface is notified whenever a server socket accepts a new connection.
226 * The transport is in the connected state, and read/write streams can be opened
227 * using the normal nsITransport API. The address of the client can be found by
228 * calling the nsISocketTransport::GetAddress method or by inspecting
229 * nsISocketTransport::GetHost, which returns a string representation of the
230 * client's IP address (NOTE: this may be an IPv4 or IPv6 string literal).
232 [scriptable, uuid(836d98ec-fee2-4bde-b609-abd5e966eabd)]
233 interface nsIServerSocketListener : nsISupports
236 * onSocketAccepted
238 * This method is called when a client connection is accepted.
240 * @param aServ
241 * The server socket.
242 * @param aTransport
243 * The connected socket transport.
245 void onSocketAccepted(in nsIServerSocket aServ,
246 in nsISocketTransport aTransport);
249 * onStopListening
251 * This method is called when the listening socket stops for some reason.
252 * The server socket is effectively dead after this notification.
254 * @param aServ
255 * The server socket.
256 * @param aStatus
257 * The reason why the server socket stopped listening. If the
258 * server socket was manually closed, then this value will be
259 * NS_BINDING_ABORTED.
261 void onStopListening(in nsIServerSocket aServ, in nsresult aStatus);