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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 "nsISupports.idl"
interface nsIWeakReference;
[scriptable, builtinclass, uuid(6714a6be-2265-4f73-a988-d78a12416037)]
interface nsIWebSocketFrame : nsISupports
{
[must_use] readonly attribute DOMHighResTimeStamp timeStamp;
[must_use] readonly attribute boolean finBit;
[must_use] readonly attribute boolean rsvBit1;
[must_use] readonly attribute boolean rsvBit2;
[must_use] readonly attribute boolean rsvBit3;
[must_use] readonly attribute unsigned short opCode;
[must_use] readonly attribute boolean maskBit;
[must_use] readonly attribute unsigned long mask;
[must_use] readonly attribute ACString payload;
// Non-Control opCode values:
const unsigned short OPCODE_CONTINUATION = 0x0;
const unsigned short OPCODE_TEXT = 0x1;
const unsigned short OPCODE_BINARY = 0x2;
// Control opCode values:
const unsigned short OPCODE_CLOSE = 0x8;
const unsigned short OPCODE_PING = 0x9;
const unsigned short OPCODE_PONG = 0xA;
};
[scriptable, uuid(e7c005ab-e694-489b-b741-96db43ffb16f)]
interface nsIWebSocketEventListener : nsISupports
{
[must_use] void webSocketCreated(in unsigned long aWebSocketSerialID,
in AString aURI,
in ACString aProtocols);
[must_use] void webSocketOpened(in unsigned long aWebSocketSerialID,
in AString aEffectiveURI,
in ACString aProtocols,
in ACString aExtensions,
in uint64_t aHttpChannelId);
const unsigned short TYPE_STRING = 0x0;
const unsigned short TYPE_BLOB = 0x1;
const unsigned short TYPE_ARRAYBUFFER = 0x2;
[must_use] void webSocketMessageAvailable(in unsigned long aWebSocketSerialID,
in ACString aMessage,
in unsigned short aType);
[must_use] void webSocketClosed(in unsigned long aWebSocketSerialID,
in boolean aWasClean,
in unsigned short aCode,
in AString aReason);
[must_use] void frameReceived(in unsigned long aWebSocketSerialID,
in nsIWebSocketFrame aFrame);
[must_use] void frameSent(in unsigned long aWebSocketSerialID,
in nsIWebSocketFrame aFrame);
};
[scriptable, builtinclass, uuid(b89d1b90-2cf3-4d8f-ac21-5aedfb25c760)]
interface nsIWebSocketEventService : nsISupports
{
[must_use] void sendMessage(in unsigned long aWebSocketSerialID,
in AString aMessage);
[must_use] void addListener(in unsigned long long aInnerWindowID,
in nsIWebSocketEventListener aListener);
[must_use] void removeListener(in unsigned long long aInnerWindowID,
in nsIWebSocketEventListener aListener);
[must_use] bool hasListenerFor(in unsigned long long aInnerWindowID);
};
|