devtools-protocol 0.0.1546284 → 0.0.1547617
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -16750,6 +16750,22 @@
|
|
|
16750
16750
|
"description": "Expected to be unsigned integer.",
|
|
16751
16751
|
"optional": true,
|
|
16752
16752
|
"type": "number"
|
|
16753
|
+
},
|
|
16754
|
+
{
|
|
16755
|
+
"name": "multicastLoopback",
|
|
16756
|
+
"optional": true,
|
|
16757
|
+
"type": "boolean"
|
|
16758
|
+
},
|
|
16759
|
+
{
|
|
16760
|
+
"name": "multicastTimeToLive",
|
|
16761
|
+
"description": "Unsigned int 8.",
|
|
16762
|
+
"optional": true,
|
|
16763
|
+
"type": "integer"
|
|
16764
|
+
},
|
|
16765
|
+
{
|
|
16766
|
+
"name": "multicastAllowAddressSharing",
|
|
16767
|
+
"optional": true,
|
|
16768
|
+
"type": "boolean"
|
|
16753
16769
|
}
|
|
16754
16770
|
]
|
|
16755
16771
|
},
|
|
@@ -18658,6 +18674,34 @@
|
|
|
18658
18674
|
}
|
|
18659
18675
|
]
|
|
18660
18676
|
},
|
|
18677
|
+
{
|
|
18678
|
+
"name": "directUDPSocketJoinedMulticastGroup",
|
|
18679
|
+
"experimental": true,
|
|
18680
|
+
"parameters": [
|
|
18681
|
+
{
|
|
18682
|
+
"name": "identifier",
|
|
18683
|
+
"$ref": "RequestId"
|
|
18684
|
+
},
|
|
18685
|
+
{
|
|
18686
|
+
"name": "IPAddress",
|
|
18687
|
+
"type": "string"
|
|
18688
|
+
}
|
|
18689
|
+
]
|
|
18690
|
+
},
|
|
18691
|
+
{
|
|
18692
|
+
"name": "directUDPSocketLeftMulticastGroup",
|
|
18693
|
+
"experimental": true,
|
|
18694
|
+
"parameters": [
|
|
18695
|
+
{
|
|
18696
|
+
"name": "identifier",
|
|
18697
|
+
"$ref": "RequestId"
|
|
18698
|
+
},
|
|
18699
|
+
{
|
|
18700
|
+
"name": "IPAddress",
|
|
18701
|
+
"type": "string"
|
|
18702
|
+
}
|
|
18703
|
+
]
|
|
18704
|
+
},
|
|
18661
18705
|
{
|
|
18662
18706
|
"name": "directUDPSocketCreated",
|
|
18663
18707
|
"description": "Fired upon direct_socket.UDPSocket creation.",
|
package/package.json
CHANGED
package/pdl/domains/Network.pdl
CHANGED
|
@@ -1706,6 +1706,20 @@ domain Network
|
|
|
1706
1706
|
optional number sendBufferSize
|
|
1707
1707
|
# Expected to be unsigned integer.
|
|
1708
1708
|
optional number receiveBufferSize
|
|
1709
|
+
optional boolean multicastLoopback
|
|
1710
|
+
# Unsigned int 8.
|
|
1711
|
+
optional integer multicastTimeToLive
|
|
1712
|
+
optional boolean multicastAllowAddressSharing
|
|
1713
|
+
|
|
1714
|
+
experimental event directUDPSocketJoinedMulticastGroup
|
|
1715
|
+
parameters
|
|
1716
|
+
RequestId identifier
|
|
1717
|
+
string IPAddress
|
|
1718
|
+
|
|
1719
|
+
experimental event directUDPSocketLeftMulticastGroup
|
|
1720
|
+
parameters
|
|
1721
|
+
RequestId identifier
|
|
1722
|
+
string IPAddress
|
|
1709
1723
|
|
|
1710
1724
|
|
|
1711
1725
|
# Fired upon direct_socket.UDPSocket creation.
|
|
@@ -490,6 +490,14 @@ export namespace ProtocolMapping {
|
|
|
490
490
|
* @experimental
|
|
491
491
|
*/
|
|
492
492
|
'Network.directTCPSocketChunkReceived': [Protocol.Network.DirectTCPSocketChunkReceivedEvent];
|
|
493
|
+
/**
|
|
494
|
+
* @experimental
|
|
495
|
+
*/
|
|
496
|
+
'Network.directUDPSocketJoinedMulticastGroup': [Protocol.Network.DirectUDPSocketJoinedMulticastGroupEvent];
|
|
497
|
+
/**
|
|
498
|
+
* @experimental
|
|
499
|
+
*/
|
|
500
|
+
'Network.directUDPSocketLeftMulticastGroup': [Protocol.Network.DirectUDPSocketLeftMulticastGroupEvent];
|
|
493
501
|
/**
|
|
494
502
|
* Fired upon direct_socket.UDPSocket creation.
|
|
495
503
|
* @experimental
|
|
@@ -3334,6 +3334,16 @@ export namespace ProtocolProxyApi {
|
|
|
3334
3334
|
*/
|
|
3335
3335
|
on(event: 'directTCPSocketChunkReceived', listener: (params: Protocol.Network.DirectTCPSocketChunkReceivedEvent) => void): void;
|
|
3336
3336
|
|
|
3337
|
+
/**
|
|
3338
|
+
* @experimental
|
|
3339
|
+
*/
|
|
3340
|
+
on(event: 'directUDPSocketJoinedMulticastGroup', listener: (params: Protocol.Network.DirectUDPSocketJoinedMulticastGroupEvent) => void): void;
|
|
3341
|
+
|
|
3342
|
+
/**
|
|
3343
|
+
* @experimental
|
|
3344
|
+
*/
|
|
3345
|
+
on(event: 'directUDPSocketLeftMulticastGroup', listener: (params: Protocol.Network.DirectUDPSocketLeftMulticastGroupEvent) => void): void;
|
|
3346
|
+
|
|
3337
3347
|
/**
|
|
3338
3348
|
* Fired upon direct_socket.UDPSocket creation.
|
|
3339
3349
|
* @experimental
|
|
@@ -3556,6 +3556,20 @@ export namespace ProtocolTestsProxyApi {
|
|
|
3556
3556
|
offDirectTCPSocketChunkReceived(listener: (event: { params: Protocol.Network.DirectTCPSocketChunkReceivedEvent }) => void): void;
|
|
3557
3557
|
onceDirectTCPSocketChunkReceived(eventMatcher?: (event: { params: Protocol.Network.DirectTCPSocketChunkReceivedEvent }) => boolean): Promise<{ params: Protocol.Network.DirectTCPSocketChunkReceivedEvent }>;
|
|
3558
3558
|
|
|
3559
|
+
/**
|
|
3560
|
+
* @experimental
|
|
3561
|
+
*/
|
|
3562
|
+
onDirectUDPSocketJoinedMulticastGroup(listener: (event: { params: Protocol.Network.DirectUDPSocketJoinedMulticastGroupEvent }) => void): void;
|
|
3563
|
+
offDirectUDPSocketJoinedMulticastGroup(listener: (event: { params: Protocol.Network.DirectUDPSocketJoinedMulticastGroupEvent }) => void): void;
|
|
3564
|
+
onceDirectUDPSocketJoinedMulticastGroup(eventMatcher?: (event: { params: Protocol.Network.DirectUDPSocketJoinedMulticastGroupEvent }) => boolean): Promise<{ params: Protocol.Network.DirectUDPSocketJoinedMulticastGroupEvent }>;
|
|
3565
|
+
|
|
3566
|
+
/**
|
|
3567
|
+
* @experimental
|
|
3568
|
+
*/
|
|
3569
|
+
onDirectUDPSocketLeftMulticastGroup(listener: (event: { params: Protocol.Network.DirectUDPSocketLeftMulticastGroupEvent }) => void): void;
|
|
3570
|
+
offDirectUDPSocketLeftMulticastGroup(listener: (event: { params: Protocol.Network.DirectUDPSocketLeftMulticastGroupEvent }) => void): void;
|
|
3571
|
+
onceDirectUDPSocketLeftMulticastGroup(eventMatcher?: (event: { params: Protocol.Network.DirectUDPSocketLeftMulticastGroupEvent }) => boolean): Promise<{ params: Protocol.Network.DirectUDPSocketLeftMulticastGroupEvent }>;
|
|
3572
|
+
|
|
3559
3573
|
/**
|
|
3560
3574
|
* Fired upon direct_socket.UDPSocket creation.
|
|
3561
3575
|
* @experimental
|
package/types/protocol.d.ts
CHANGED
|
@@ -13332,6 +13332,12 @@ export namespace Protocol {
|
|
|
13332
13332
|
* Expected to be unsigned integer.
|
|
13333
13333
|
*/
|
|
13334
13334
|
receiveBufferSize?: number;
|
|
13335
|
+
multicastLoopback?: boolean;
|
|
13336
|
+
/**
|
|
13337
|
+
* Unsigned int 8.
|
|
13338
|
+
*/
|
|
13339
|
+
multicastTimeToLive?: integer;
|
|
13340
|
+
multicastAllowAddressSharing?: boolean;
|
|
13335
13341
|
}
|
|
13336
13342
|
|
|
13337
13343
|
/**
|
|
@@ -14626,6 +14632,22 @@ export namespace Protocol {
|
|
|
14626
14632
|
timestamp: MonotonicTime;
|
|
14627
14633
|
}
|
|
14628
14634
|
|
|
14635
|
+
/**
|
|
14636
|
+
* @experimental
|
|
14637
|
+
*/
|
|
14638
|
+
export interface DirectUDPSocketJoinedMulticastGroupEvent {
|
|
14639
|
+
identifier: RequestId;
|
|
14640
|
+
IPAddress: string;
|
|
14641
|
+
}
|
|
14642
|
+
|
|
14643
|
+
/**
|
|
14644
|
+
* @experimental
|
|
14645
|
+
*/
|
|
14646
|
+
export interface DirectUDPSocketLeftMulticastGroupEvent {
|
|
14647
|
+
identifier: RequestId;
|
|
14648
|
+
IPAddress: string;
|
|
14649
|
+
}
|
|
14650
|
+
|
|
14629
14651
|
/**
|
|
14630
14652
|
* Fired upon direct_socket.UDPSocket creation.
|
|
14631
14653
|
* @experimental
|