2023-01-03 19:55:46 +00:00
|
|
|
// Copyright 2014 Signal Messenger, LLC
|
2021-07-20 20:18:35 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-02-15 19:59:46 +00:00
|
|
|
package signalservice;
|
2014-11-15 01:48:57 +00:00
|
|
|
|
|
|
|
option java_package = "org.whispersystems.websocket.messages.protobuf";
|
|
|
|
|
|
|
|
message WebSocketRequestMessage {
|
2019-01-11 16:53:35 +00:00
|
|
|
optional string verb = 1;
|
|
|
|
optional string path = 2;
|
|
|
|
optional bytes body = 3;
|
|
|
|
repeated string headers = 5;
|
|
|
|
optional uint64 id = 4;
|
2014-11-15 01:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message WebSocketResponseMessage {
|
2019-01-11 16:53:35 +00:00
|
|
|
optional uint64 id = 1;
|
|
|
|
optional uint32 status = 2;
|
|
|
|
optional string message = 3;
|
|
|
|
repeated string headers = 5;
|
|
|
|
optional bytes body = 4;
|
2014-11-15 01:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message WebSocketMessage {
|
2019-01-11 16:53:35 +00:00
|
|
|
enum Type {
|
|
|
|
UNKNOWN = 0;
|
|
|
|
REQUEST = 1;
|
|
|
|
RESPONSE = 2;
|
|
|
|
}
|
2014-11-15 01:48:57 +00:00
|
|
|
|
2019-01-11 16:53:35 +00:00
|
|
|
optional Type type = 1;
|
|
|
|
optional WebSocketRequestMessage request = 2;
|
|
|
|
optional WebSocketResponseMessage response = 3;
|
2018-02-15 19:59:46 +00:00
|
|
|
}
|