Skip to content

Commit a07bc87

Browse files
committed
Roll protocol to r1547617
1 parent 672dae3 commit a07bc87

File tree

9 files changed

+143
-18
lines changed

9 files changed

+143
-18
lines changed

changelog.md

Lines changed: 28 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,34 @@
11

22

3+
## Roll protocol to r1547617 — _2025-11-20T04:31:52.000Z_
4+
###### Diff: [`672dae3...3e324cc`](https://github.com/ChromeDevTools/devtools-protocol/compare/672dae3...3e324cc)
5+
6+
```diff
7+
@@ domains/Network.pdl:1706 @@ domain Network
8+
optional number sendBufferSize
9+
# Expected to be unsigned integer.
10+
optional number receiveBufferSize
11+
+ optional boolean multicastLoopback
12+
+ # Unsigned int 8.
13+
+ optional integer multicastTimeToLive
14+
+ optional boolean multicastAllowAddressSharing
15+
+
16+
+ experimental event directUDPSocketJoinedMulticastGroup
17+
+ parameters
18+
+ RequestId identifier
19+
+ string IPAddress
20+
+
21+
+ experimental event directUDPSocketLeftMulticastGroup
22+
+ parameters
23+
+ RequestId identifier
24+
+ string IPAddress
25+
26+
27+
# Fired upon direct_socket.UDPSocket creation.
28+
```
29+
330
## Roll protocol to r1546284 — _2025-11-18T04:32:28.000Z_
4-
###### Diff: [`1f03df6...d995e7c`](https://github.com/ChromeDevTools/devtools-protocol/compare/1f03df6...d995e7c)
31+
###### Diff: [`1f03df6...672dae3`](https://github.com/ChromeDevTools/devtools-protocol/compare/1f03df6...672dae3)
532

633
```diff
734
@@ domains/Audits.pdl:405 @@ experimental domain Audits
@@ -41918,18 +41945,4 @@ index 0dbdc01d..7a3c772c 100644
4191841945
+
4191941946
+ command enable
4192041947
+ command disable
41921-
```
41922-
41923-
## Roll protocol to r1111422 — _2023-03-01T04:29:07.000Z_
41924-
###### Diff: [`41a0227...b7cc171`](https://github.com/ChromeDevTools/devtools-protocol/compare/41a0227...b7cc171)
41925-
41926-
```diff
41927-
@@ browser_protocol.pdl:752 @@ experimental domain Audits
41928-
FormInputAssignedAutocompleteValueToIdOrNameAttributeError
41929-
FormLabelHasNeitherForNorNestedInput
41930-
FormLabelForMatchesNonExistingIdError
41931-
- FormHasPasswordFieldWithoutUsernameFieldError
41932-
41933-
# Depending on the concrete errorType, different properties are set.
41934-
type GenericIssueDetails extends object
4193541948
```

json/browser_protocol.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16750,6 +16750,22 @@
1675016750
"description": "Expected to be unsigned integer.",
1675116751
"optional": true,
1675216752
"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"
1675316769
}
1675416770
]
1675516771
},
@@ -18658,6 +18674,34 @@
1865818674
}
1865918675
]
1866018676
},
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+
},
1866118705
{
1866218706
"name": "directUDPSocketCreated",
1866318707
"description": "Fired upon direct_socket.UDPSocket creation.",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devtools-protocol",
3-
"version": "0.0.1546284",
3+
"version": "0.0.1547617",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/domains/Network.pdl

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1706,6 +1706,20 @@ domain Network
17061706
optional number sendBufferSize
17071707
# Expected to be unsigned integer.
17081708
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
17091723

17101724

17111725
# Fired upon direct_socket.UDPSocket creation.

types/protocol-mapping.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,14 @@ export namespace ProtocolMapping {
490490
* @experimental
491491
*/
492492
'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];
493501
/**
494502
* Fired upon direct_socket.UDPSocket creation.
495503
* @experimental

types/protocol-proxy-api.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3334,6 +3334,16 @@ export namespace ProtocolProxyApi {
33343334
*/
33353335
on(event: 'directTCPSocketChunkReceived', listener: (params: Protocol.Network.DirectTCPSocketChunkReceivedEvent) => void): void;
33363336

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+
33373347
/**
33383348
* Fired upon direct_socket.UDPSocket creation.
33393349
* @experimental

types/protocol-tests-proxy-api.d.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3556,6 +3556,20 @@ export namespace ProtocolTestsProxyApi {
35563556
offDirectTCPSocketChunkReceived(listener: (event: { params: Protocol.Network.DirectTCPSocketChunkReceivedEvent }) => void): void;
35573557
onceDirectTCPSocketChunkReceived(eventMatcher?: (event: { params: Protocol.Network.DirectTCPSocketChunkReceivedEvent }) => boolean): Promise<{ params: Protocol.Network.DirectTCPSocketChunkReceivedEvent }>;
35583558

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+
35593573
/**
35603574
* Fired upon direct_socket.UDPSocket creation.
35613575
* @experimental

types/protocol.d.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13332,6 +13332,12 @@ export namespace Protocol {
1333213332
* Expected to be unsigned integer.
1333313333
*/
1333413334
receiveBufferSize?: number;
13335+
multicastLoopback?: boolean;
13336+
/**
13337+
* Unsigned int 8.
13338+
*/
13339+
multicastTimeToLive?: integer;
13340+
multicastAllowAddressSharing?: boolean;
1333513341
}
1333613342

1333713343
/**
@@ -14626,6 +14632,22 @@ export namespace Protocol {
1462614632
timestamp: MonotonicTime;
1462714633
}
1462814634

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+
1462914651
/**
1463014652
* Fired upon direct_socket.UDPSocket creation.
1463114653
* @experimental

0 commit comments

Comments
 (0)