This file is indexed.

/usr/share/idl/thunderbird/nsITCPServerSocketChild.idl is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "domstubs.idl"
#include "nsIDOMTCPServerSocket.idl"

interface nsITCPServerSocketInternal;

/**
 * Interface to allow the content process server socket to reach the IPC bridge.
 * It is used in the server socket implementation on the child side.
 */

[scriptable, uuid(41a77ec8-fd86-409e-aea9-af2ca407ef8e)]
interface nsITCPServerSocketChild : nsISupports
{
  /**
   * Tell the chrome process to listen on the port with the given parameters.
   *
   * @param serverSocket
   *        The server socket generated in the listen of nsIDOMTCPSocket
   *        on the child side.
   * @param port
   *        The port of the server socket.
   * @param backlog 
   *        The maximum length the queue of pending connections may grow to.
   * @param binaryType
   *        "arraybuffer" to use UInt8 array instances or "string" to use String.
   */
  [implicit_jscontext]
  void listen(in nsITCPServerSocketInternal serverSocket, in unsigned short port,
              in unsigned short backlog, in DOMString binaryType);

  /**
   * Tell the chrome process to close the server socket.
   */
  void close();
};