Update compiled_protos

This commit is contained in:
Anay Wadhera
2023-05-22 10:28:16 -07:00
parent 3c72e4f40c
commit d8644b1563
13 changed files with 7506 additions and 772 deletions
File diff suppressed because it is too large Load Diff
@@ -13,7 +13,7 @@
#error incompatible with your Protocol Buffer headers. Please update
#error your headers.
#endif
#if 3019004 < PROTOBUF_MIN_PROTOC_VERSION
#if 3019001 < PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers. Please
#error regenerate this file with a newer version of protoc.
@@ -94,11 +94,12 @@ enum Event : int {
REJECT_CONNECTION = 10,
SEND_PAYLOAD = 11,
CANCEL_PAYLOAD = 12,
RECEIVE_PAYLOAD = 13
RECEIVE_PAYLOAD = 13,
UPGRADE = 14
};
bool Event_IsValid(int value);
constexpr Event Event_MIN = UNKNOWN_EVENT;
constexpr Event Event_MAX = RECEIVE_PAYLOAD;
constexpr Event Event_MAX = UPGRADE;
constexpr int Event_ARRAYSIZE = Event_MAX + 1;
const std::string& Event_Name(Event value);
@@ -336,6 +337,101 @@ inline const std::string& DisconnectError_Name(T enum_t_value) {
}
bool DisconnectError_Parse(
::PROTOBUF_NAMESPACE_ID::ConstStringParam name, DisconnectError* value);
enum SendPayloadError : int {
UNKNOWN_SEND_PAYLOAD_ERROR = 31,
SEND_PAYLOAD_FAILED = 32
};
bool SendPayloadError_IsValid(int value);
constexpr SendPayloadError SendPayloadError_MIN = UNKNOWN_SEND_PAYLOAD_ERROR;
constexpr SendPayloadError SendPayloadError_MAX = SEND_PAYLOAD_FAILED;
constexpr int SendPayloadError_ARRAYSIZE = SendPayloadError_MAX + 1;
const std::string& SendPayloadError_Name(SendPayloadError value);
template<typename T>
inline const std::string& SendPayloadError_Name(T enum_t_value) {
static_assert(::std::is_same<T, SendPayloadError>::value ||
::std::is_integral<T>::value,
"Incorrect type passed to function SendPayloadError_Name.");
return SendPayloadError_Name(static_cast<SendPayloadError>(enum_t_value));
}
bool SendPayloadError_Parse(
::PROTOBUF_NAMESPACE_ID::ConstStringParam name, SendPayloadError* value);
enum ReceivePayloadError : int {
UNKNOWN_RECEIVE_PAYLOAD_ERROR = 31,
RECEIVE_PAYLOAD_FAILED = 32
};
bool ReceivePayloadError_IsValid(int value);
constexpr ReceivePayloadError ReceivePayloadError_MIN = UNKNOWN_RECEIVE_PAYLOAD_ERROR;
constexpr ReceivePayloadError ReceivePayloadError_MAX = RECEIVE_PAYLOAD_FAILED;
constexpr int ReceivePayloadError_ARRAYSIZE = ReceivePayloadError_MAX + 1;
const std::string& ReceivePayloadError_Name(ReceivePayloadError value);
template<typename T>
inline const std::string& ReceivePayloadError_Name(T enum_t_value) {
static_assert(::std::is_same<T, ReceivePayloadError>::value ||
::std::is_integral<T>::value,
"Incorrect type passed to function ReceivePayloadError_Name.");
return ReceivePayloadError_Name(static_cast<ReceivePayloadError>(enum_t_value));
}
bool ReceivePayloadError_Parse(
::PROTOBUF_NAMESPACE_ID::ConstStringParam name, ReceivePayloadError* value);
enum UpgradeError : int {
UNKNOWN_UPGRADE_ERROR = 31,
CREATE_P2P_GROUP_FAILED = 32
};
bool UpgradeError_IsValid(int value);
constexpr UpgradeError UpgradeError_MIN = UNKNOWN_UPGRADE_ERROR;
constexpr UpgradeError UpgradeError_MAX = CREATE_P2P_GROUP_FAILED;
constexpr int UpgradeError_ARRAYSIZE = UpgradeError_MAX + 1;
const std::string& UpgradeError_Name(UpgradeError value);
template<typename T>
inline const std::string& UpgradeError_Name(T enum_t_value) {
static_assert(::std::is_same<T, UpgradeError>::value ||
::std::is_integral<T>::value,
"Incorrect type passed to function UpgradeError_Name.");
return UpgradeError_Name(static_cast<UpgradeError>(enum_t_value));
}
bool UpgradeError_Parse(
::PROTOBUF_NAMESPACE_ID::ConstStringParam name, UpgradeError* value);
enum AcceptConnectionError : int {
UNKNOWN_ACCEPT_CONNECTION_ERROR = 31,
RESPOND_ACCEPT_CONNECTION_FAILED = 32
};
bool AcceptConnectionError_IsValid(int value);
constexpr AcceptConnectionError AcceptConnectionError_MIN = UNKNOWN_ACCEPT_CONNECTION_ERROR;
constexpr AcceptConnectionError AcceptConnectionError_MAX = RESPOND_ACCEPT_CONNECTION_FAILED;
constexpr int AcceptConnectionError_ARRAYSIZE = AcceptConnectionError_MAX + 1;
const std::string& AcceptConnectionError_Name(AcceptConnectionError value);
template<typename T>
inline const std::string& AcceptConnectionError_Name(T enum_t_value) {
static_assert(::std::is_same<T, AcceptConnectionError>::value ||
::std::is_integral<T>::value,
"Incorrect type passed to function AcceptConnectionError_Name.");
return AcceptConnectionError_Name(static_cast<AcceptConnectionError>(enum_t_value));
}
bool AcceptConnectionError_Parse(
::PROTOBUF_NAMESPACE_ID::ConstStringParam name, AcceptConnectionError* value);
enum RejectConnectionError : int {
UNKNOWN_REJECT_CONNECTION_ERROR = 31,
RESPOND_REJECT_CONNECTION_FAILED = 32
};
bool RejectConnectionError_IsValid(int value);
constexpr RejectConnectionError RejectConnectionError_MIN = UNKNOWN_REJECT_CONNECTION_ERROR;
constexpr RejectConnectionError RejectConnectionError_MAX = RESPOND_REJECT_CONNECTION_FAILED;
constexpr int RejectConnectionError_ARRAYSIZE = RejectConnectionError_MAX + 1;
const std::string& RejectConnectionError_Name(RejectConnectionError value);
template<typename T>
inline const std::string& RejectConnectionError_Name(T enum_t_value) {
static_assert(::std::is_same<T, RejectConnectionError>::value ||
::std::is_integral<T>::value,
"Incorrect type passed to function RejectConnectionError_Name.");
return RejectConnectionError_Name(static_cast<RejectConnectionError>(enum_t_value));
}
bool RejectConnectionError_Parse(
::PROTOBUF_NAMESPACE_ID::ConstStringParam name, RejectConnectionError* value);
enum Description : int {
UNKNOWN = 0,
NULL_SERVICE_ID = 1,
@@ -506,11 +602,27 @@ enum Description : int {
UNSUPPORTED_DEVICE_TYPE_AUTO = 168,
UNSUPPORTED_DEVICE_TYPE_TV = 169,
UNSUPPORTED_DEVICE_TYPE_WEAR = 170,
NULL_MESSAGE = 171
NULL_MESSAGE = 171,
USER_RESTRICTION_DISALLOWED = 172,
UNSUPPORTED_DEVICE_TYPE_PHONE = 173,
UNSUPPORTED_DEVICE_TYPE_TABLET = 174,
BROKEN_PIPE = 175,
CONNECTION_ABORT = 176,
FEATURE_USB_HOST_NOT_SUPPORTED = 177,
FEATURE_USB_ACCESSORY_NOT_SUPPORTED = 178,
FEATURE_USB_PORTS_NOT_FOUND = 179,
MULTIPLEX_SOCKET_UNKNOWN_ERROR = 180,
MULTIPLEX_SOCKET_NOT_LISTENING = 181,
MULTIPLEX_SOCKET_DISABLED = 182,
MULTIPLEX_SOCKET_TIMEOUT = 183,
MULTIPLEX_SOCKET_IOEXCEPTION = 184,
MULTIPLEX_SOCKET_UNKNOWN_RESPONSE_CODE = 185,
MULTIPLEX_SOCKET_EXECUTION_EXCEPTION = 186,
MULTIPLEX_SOCKET_INTERRUPTED_EXCEPTION = 187
};
bool Description_IsValid(int value);
constexpr Description Description_MIN = UNKNOWN;
constexpr Description Description_MAX = NULL_MESSAGE;
constexpr Description Description_MAX = MULTIPLEX_SOCKET_INTERRUPTED_EXCEPTION;
constexpr int Description_ARRAYSIZE = Description_MAX + 1;
const std::string& Description_Name(Description value);
@@ -559,6 +671,11 @@ template <> struct is_proto_enum< ::location::nearby::errorcode::proto::StartLis
template <> struct is_proto_enum< ::location::nearby::errorcode::proto::StopListeningIncomingConnectionError> : ::std::true_type {};
template <> struct is_proto_enum< ::location::nearby::errorcode::proto::ConnectError> : ::std::true_type {};
template <> struct is_proto_enum< ::location::nearby::errorcode::proto::DisconnectError> : ::std::true_type {};
template <> struct is_proto_enum< ::location::nearby::errorcode::proto::SendPayloadError> : ::std::true_type {};
template <> struct is_proto_enum< ::location::nearby::errorcode::proto::ReceivePayloadError> : ::std::true_type {};
template <> struct is_proto_enum< ::location::nearby::errorcode::proto::UpgradeError> : ::std::true_type {};
template <> struct is_proto_enum< ::location::nearby::errorcode::proto::AcceptConnectionError> : ::std::true_type {};
template <> struct is_proto_enum< ::location::nearby::errorcode::proto::RejectConnectionError> : ::std::true_type {};
template <> struct is_proto_enum< ::location::nearby::errorcode::proto::Description> : ::std::true_type {};
PROTOBUF_NAMESPACE_CLOSE