1
0
mirror of https://github.com/Mojang/bedrock-protocol-docs.git synced 2025-11-06 06:35:12 +00:00
Files
bedrock-protocol-docs/json/RequestNetworkSettingsPacket.json

39 lines
1.3 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "986000289",
"x-format-version": "MISSING VERSION",
"x-minecraft-version": "1.21.120",
"x-protocol-version": 859,
"definitions": {
"4027698434": {
"title": "struct RequestNetworkSettingsPacketPayload",
"type": "object",
"properties": {
"ClientNetworkVersion": {
"type": "integer",
"x-underlying-type": "int32",
"x-serialization-options": [
"BigEndian"
],
"x-ordinal-index": 0
}
},
"required": [
"ClientNetworkVersion"
]
}
},
"title": "RequestNetworkSettingsPacket",
"description": "Requests tunable options from host to client (compression threshold and algorithm).",
"type": "object",
"properties": {
"mPayload": {
"$ref": "#/definitions/4027698434",
"x-ordinal-index": 0
}
},
"$metaProperties": {
"[cereal:packet]": 193,
"[cereal:packet_details]": "This is the initial packet sent from the client to initiate a connection. NOTE: this packet should not contain anything other than the client version, don't add new data here."
}
}