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