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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
/* -*- 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/. */
// This file defines dictionaries used by about:networking page.
dictionary SocketElement {
DOMString host = "";
unsigned long port = 0;
boolean active = false;
DOMString type = "";
double sent = 0;
double received = 0;
};
[GenerateConversionToJS]
dictionary SocketsDict {
sequence<SocketElement> sockets;
double sent = 0;
double received = 0;
};
dictionary HttpConnInfo {
unsigned long rtt = 0;
unsigned long ttl = 0;
DOMString protocolVersion = "";
};
dictionary DnsAndSockInfoDict {
boolean speculative = false;
};
dictionary HttpConnectionElement {
DOMString host = "";
unsigned long port = 0;
DOMString httpVersion = "";
boolean ssl = false;
sequence<HttpConnInfo> active;
sequence<HttpConnInfo> idle;
sequence<DnsAndSockInfoDict> dnsAndSocks;
};
[GenerateConversionToJS]
dictionary HttpConnDict {
sequence<HttpConnectionElement> connections;
};
dictionary WebSocketElement {
DOMString hostport = "";
unsigned long msgsent = 0;
unsigned long msgreceived = 0;
double sentsize = 0;
double receivedsize = 0;
boolean encrypted = false;
};
[GenerateConversionToJS]
dictionary WebSocketDict {
sequence<WebSocketElement> websockets;
};
dictionary DnsCacheEntry {
DOMString hostname = "";
sequence<DOMString> hostaddr;
DOMString family = "";
double expiration = 0;
boolean trr = false;
DOMString originAttributesSuffix = "";
DOMString flags = "";
unsigned short type = 0;
};
[GenerateConversionToJS]
dictionary DNSCacheDict {
sequence<DnsCacheEntry> entries;
};
[GenerateConversionToJS]
dictionary DNSLookupDict {
sequence<DOMString> address;
DOMString error = "";
boolean answer = false;
};
dictionary SVCParam {
unsigned short type = 0;
};
dictionary SVCParamAlpn : SVCParam {
DOMString alpn = "";
};
dictionary SVCParamNoDefaultAlpn : SVCParam {
};
dictionary SVCParamPort : SVCParam {
unsigned short port = 0;
};
dictionary SVCParamIPv4Hint : SVCParam {
sequence<DOMString> address;
};
dictionary SVCParamIPv6Hint : SVCParam {
sequence<DOMString> address;
};
dictionary SVCParamEchConfig : SVCParam {
DOMString echConfig = "";
};
dictionary SVCParamODoHConfig : SVCParam {
DOMString ODoHConfig = "";
};
dictionary HTTPSRecord {
unsigned short priority = 0;
DOMString targetName = "";
SVCParamAlpn alpn;
SVCParamNoDefaultAlpn noDefaultAlpn;
SVCParamPort port;
SVCParamIPv4Hint ipv4Hint;
SVCParamIPv6Hint ipv6Hint;
SVCParamEchConfig echConfig;
SVCParamODoHConfig ODoHConfig;
};
[GenerateConversionToJS]
dictionary HTTPSRRLookupDict {
DOMString error = "";
boolean answer = false;
sequence<HTTPSRecord> records;
};
[GenerateConversionToJS]
dictionary ConnStatusDict {
DOMString status = "";
};
dictionary RcwnPerfStats {
unsigned long avgShort = 0;
unsigned long avgLong = 0;
unsigned long stddevLong = 0;
};
[GenerateConversionToJS]
dictionary RcwnStatus {
unsigned long totalNetworkRequests = 0;
unsigned long rcwnCacheWonCount = 0;
unsigned long rcwnNetWonCount = 0;
unsigned long cacheSlowCount = 0;
unsigned long cacheNotSlowCount = 0;
// Sequence is indexed by CachePerfStats::EDataType
sequence<RcwnPerfStats> perfStats;
};
dictionary Http3ConnStats {
unsigned long long packetsRx = 0;
unsigned long long dupsRx = 0;
unsigned long long droppedRx = 0;
unsigned long long savedDatagrams = 0;
unsigned long long packetsTx = 0;
unsigned long long lost = 0;
unsigned long long lateAck = 0;
unsigned long long ptoAck = 0;
unsigned long long wouldBlockRx = 0;
unsigned long long wouldBlockTx = 0;
sequence<unsigned long long> ptoCounts;
};
dictionary Http3ConnectionStatsElement {
DOMString host = "";
unsigned long port = 0;
sequence<Http3ConnStats> stats;
};
[GenerateConversionToJS]
dictionary Http3ConnStatsDict {
sequence<Http3ConnectionStatsElement> connections;
};
|