This file is indexed.

/usr/share/idl/thunderbird/nsITCPSocketChild.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
40
41
42
43
44
45
46
47
48
49
50
/* 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"

interface nsITCPSocketInternal;
interface nsIDOMWindow;

// Interface to allow the content process socket to reach the IPC bridge.
// Implemented in C++ as TCPSocketChild, referenced as _socketBridge in TCPSocket.js
[scriptable, uuid(4277aff0-4c33-11e3-8f96-0800200c9a66)]
interface nsITCPSocketChild : nsISupports
{
  // Tell the chrome process to open a corresponding connection with the given parameters
  [implicit_jscontext]
  void sendOpen(in nsITCPSocketInternal socket, in DOMString host,
                in unsigned short port, in boolean ssl, in DOMString binaryType,
                in nsIDOMWindow window, in jsval windowVal);

  // Tell the chrome process to perform send and update the tracking number.
  [implicit_jscontext] 
  void sendSend(in jsval data, in unsigned long byteOffset,
                in unsigned long byteLength, in unsigned long trackingNumber);

  // Tell the chrome process to perform equivalent operations to all following methods
  void sendResume();
  void sendSuspend();
  void sendClose();
  void sendStartTLS();

  /**
   * Initialize the TCP socket on the child side for IPC. It is called from the child side,
   * which is generated in receiving a notification of accepting any open request
   * on the parent side. We use single implementation that works on a child process 
   * as well as in the single process model.
   *
   * @param socket
   *        The TCP socket on the child side.
   *        This instance is connected with the child IPC side of the IPC bridge.
   * @param windowVal
   *        The window object on the child side to create data
   *        as "jsval" for deserialization.
   */
  [implicit_jscontext]
  void setSocketAndWindow(in nsITCPSocketInternal socket, in jsval windowVal);

  readonly attribute DOMString host;
  readonly attribute unsigned short port;
};