mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 21:17:47 +03:00
440 lines
15 KiB
Go
440 lines
15 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: control.proto
|
|
|
|
package core
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
type AuthResult int32
|
|
|
|
const (
|
|
AuthResult_AUTH_SUCCESS AuthResult = 0
|
|
AuthResult_AUTH_INVALID_CRED AuthResult = 1
|
|
AuthResult_AUTH_INTERNAL_ERROR AuthResult = 2
|
|
)
|
|
|
|
var AuthResult_name = map[int32]string{
|
|
0: "AUTH_SUCCESS",
|
|
1: "AUTH_INVALID_CRED",
|
|
2: "AUTH_INTERNAL_ERROR",
|
|
}
|
|
|
|
var AuthResult_value = map[string]int32{
|
|
"AUTH_SUCCESS": 0,
|
|
"AUTH_INVALID_CRED": 1,
|
|
"AUTH_INTERNAL_ERROR": 2,
|
|
}
|
|
|
|
func (x AuthResult) String() string {
|
|
return proto.EnumName(AuthResult_name, int32(x))
|
|
}
|
|
|
|
func (AuthResult) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_0c5120591600887d, []int{0}
|
|
}
|
|
|
|
type ConnectionType int32
|
|
|
|
const (
|
|
ConnectionType_Stream ConnectionType = 0
|
|
ConnectionType_Packet ConnectionType = 1
|
|
)
|
|
|
|
var ConnectionType_name = map[int32]string{
|
|
0: "Stream",
|
|
1: "Packet",
|
|
}
|
|
|
|
var ConnectionType_value = map[string]int32{
|
|
"Stream": 0,
|
|
"Packet": 1,
|
|
}
|
|
|
|
func (x ConnectionType) String() string {
|
|
return proto.EnumName(ConnectionType_name, int32(x))
|
|
}
|
|
|
|
func (ConnectionType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_0c5120591600887d, []int{1}
|
|
}
|
|
|
|
type ConnectResult int32
|
|
|
|
const (
|
|
ConnectResult_CONN_SUCCESS ConnectResult = 0
|
|
ConnectResult_CONN_FAILED ConnectResult = 1
|
|
ConnectResult_CONN_BLOCKED ConnectResult = 2
|
|
)
|
|
|
|
var ConnectResult_name = map[int32]string{
|
|
0: "CONN_SUCCESS",
|
|
1: "CONN_FAILED",
|
|
2: "CONN_BLOCKED",
|
|
}
|
|
|
|
var ConnectResult_value = map[string]int32{
|
|
"CONN_SUCCESS": 0,
|
|
"CONN_FAILED": 1,
|
|
"CONN_BLOCKED": 2,
|
|
}
|
|
|
|
func (x ConnectResult) String() string {
|
|
return proto.EnumName(ConnectResult_name, int32(x))
|
|
}
|
|
|
|
func (ConnectResult) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_0c5120591600887d, []int{2}
|
|
}
|
|
|
|
type Speed struct {
|
|
SendBps uint64 `protobuf:"varint,1,opt,name=send_bps,json=sendBps,proto3" json:"send_bps,omitempty"`
|
|
ReceiveBps uint64 `protobuf:"varint,2,opt,name=receive_bps,json=receiveBps,proto3" json:"receive_bps,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Speed) Reset() { *m = Speed{} }
|
|
func (m *Speed) String() string { return proto.CompactTextString(m) }
|
|
func (*Speed) ProtoMessage() {}
|
|
func (*Speed) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0c5120591600887d, []int{0}
|
|
}
|
|
|
|
func (m *Speed) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Speed.Unmarshal(m, b)
|
|
}
|
|
func (m *Speed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Speed.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Speed) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Speed.Merge(m, src)
|
|
}
|
|
func (m *Speed) XXX_Size() int {
|
|
return xxx_messageInfo_Speed.Size(m)
|
|
}
|
|
func (m *Speed) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Speed.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Speed proto.InternalMessageInfo
|
|
|
|
func (m *Speed) GetSendBps() uint64 {
|
|
if m != nil {
|
|
return m.SendBps
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Speed) GetReceiveBps() uint64 {
|
|
if m != nil {
|
|
return m.ReceiveBps
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type Credential struct {
|
|
Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
|
|
Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Credential) Reset() { *m = Credential{} }
|
|
func (m *Credential) String() string { return proto.CompactTextString(m) }
|
|
func (*Credential) ProtoMessage() {}
|
|
func (*Credential) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0c5120591600887d, []int{1}
|
|
}
|
|
|
|
func (m *Credential) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Credential.Unmarshal(m, b)
|
|
}
|
|
func (m *Credential) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Credential.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Credential) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Credential.Merge(m, src)
|
|
}
|
|
func (m *Credential) XXX_Size() int {
|
|
return xxx_messageInfo_Credential.Size(m)
|
|
}
|
|
func (m *Credential) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Credential.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Credential proto.InternalMessageInfo
|
|
|
|
func (m *Credential) GetUsername() string {
|
|
if m != nil {
|
|
return m.Username
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Credential) GetPassword() string {
|
|
if m != nil {
|
|
return m.Password
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ClientAuthRequest struct {
|
|
Credential *Credential `protobuf:"bytes,1,opt,name=credential,proto3" json:"credential,omitempty"`
|
|
Speed *Speed `protobuf:"bytes,2,opt,name=speed,proto3" json:"speed,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ClientAuthRequest) Reset() { *m = ClientAuthRequest{} }
|
|
func (m *ClientAuthRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ClientAuthRequest) ProtoMessage() {}
|
|
func (*ClientAuthRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0c5120591600887d, []int{2}
|
|
}
|
|
|
|
func (m *ClientAuthRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ClientAuthRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ClientAuthRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ClientAuthRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ClientAuthRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ClientAuthRequest.Merge(m, src)
|
|
}
|
|
func (m *ClientAuthRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ClientAuthRequest.Size(m)
|
|
}
|
|
func (m *ClientAuthRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ClientAuthRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ClientAuthRequest proto.InternalMessageInfo
|
|
|
|
func (m *ClientAuthRequest) GetCredential() *Credential {
|
|
if m != nil {
|
|
return m.Credential
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ClientAuthRequest) GetSpeed() *Speed {
|
|
if m != nil {
|
|
return m.Speed
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ServerAuthResponse struct {
|
|
Result AuthResult `protobuf:"varint,1,opt,name=result,proto3,enum=core.AuthResult" json:"result,omitempty"`
|
|
Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
|
|
Speed *Speed `protobuf:"bytes,3,opt,name=speed,proto3" json:"speed,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ServerAuthResponse) Reset() { *m = ServerAuthResponse{} }
|
|
func (m *ServerAuthResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ServerAuthResponse) ProtoMessage() {}
|
|
func (*ServerAuthResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0c5120591600887d, []int{3}
|
|
}
|
|
|
|
func (m *ServerAuthResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ServerAuthResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *ServerAuthResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ServerAuthResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ServerAuthResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ServerAuthResponse.Merge(m, src)
|
|
}
|
|
func (m *ServerAuthResponse) XXX_Size() int {
|
|
return xxx_messageInfo_ServerAuthResponse.Size(m)
|
|
}
|
|
func (m *ServerAuthResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ServerAuthResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ServerAuthResponse proto.InternalMessageInfo
|
|
|
|
func (m *ServerAuthResponse) GetResult() AuthResult {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return AuthResult_AUTH_SUCCESS
|
|
}
|
|
|
|
func (m *ServerAuthResponse) GetMessage() string {
|
|
if m != nil {
|
|
return m.Message
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ServerAuthResponse) GetSpeed() *Speed {
|
|
if m != nil {
|
|
return m.Speed
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ClientConnectRequest struct {
|
|
Type ConnectionType `protobuf:"varint,1,opt,name=type,proto3,enum=core.ConnectionType" json:"type,omitempty"`
|
|
Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ClientConnectRequest) Reset() { *m = ClientConnectRequest{} }
|
|
func (m *ClientConnectRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ClientConnectRequest) ProtoMessage() {}
|
|
func (*ClientConnectRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0c5120591600887d, []int{4}
|
|
}
|
|
|
|
func (m *ClientConnectRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ClientConnectRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ClientConnectRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ClientConnectRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ClientConnectRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ClientConnectRequest.Merge(m, src)
|
|
}
|
|
func (m *ClientConnectRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ClientConnectRequest.Size(m)
|
|
}
|
|
func (m *ClientConnectRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ClientConnectRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ClientConnectRequest proto.InternalMessageInfo
|
|
|
|
func (m *ClientConnectRequest) GetType() ConnectionType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return ConnectionType_Stream
|
|
}
|
|
|
|
func (m *ClientConnectRequest) GetAddress() string {
|
|
if m != nil {
|
|
return m.Address
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ServerConnectResponse struct {
|
|
Result ConnectResult `protobuf:"varint,1,opt,name=result,proto3,enum=core.ConnectResult" json:"result,omitempty"`
|
|
Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ServerConnectResponse) Reset() { *m = ServerConnectResponse{} }
|
|
func (m *ServerConnectResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ServerConnectResponse) ProtoMessage() {}
|
|
func (*ServerConnectResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0c5120591600887d, []int{5}
|
|
}
|
|
|
|
func (m *ServerConnectResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ServerConnectResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *ServerConnectResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ServerConnectResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ServerConnectResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ServerConnectResponse.Merge(m, src)
|
|
}
|
|
func (m *ServerConnectResponse) XXX_Size() int {
|
|
return xxx_messageInfo_ServerConnectResponse.Size(m)
|
|
}
|
|
func (m *ServerConnectResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ServerConnectResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ServerConnectResponse proto.InternalMessageInfo
|
|
|
|
func (m *ServerConnectResponse) GetResult() ConnectResult {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return ConnectResult_CONN_SUCCESS
|
|
}
|
|
|
|
func (m *ServerConnectResponse) GetMessage() string {
|
|
if m != nil {
|
|
return m.Message
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("core.AuthResult", AuthResult_name, AuthResult_value)
|
|
proto.RegisterEnum("core.ConnectionType", ConnectionType_name, ConnectionType_value)
|
|
proto.RegisterEnum("core.ConnectResult", ConnectResult_name, ConnectResult_value)
|
|
proto.RegisterType((*Speed)(nil), "core.Speed")
|
|
proto.RegisterType((*Credential)(nil), "core.Credential")
|
|
proto.RegisterType((*ClientAuthRequest)(nil), "core.ClientAuthRequest")
|
|
proto.RegisterType((*ServerAuthResponse)(nil), "core.ServerAuthResponse")
|
|
proto.RegisterType((*ClientConnectRequest)(nil), "core.ClientConnectRequest")
|
|
proto.RegisterType((*ServerConnectResponse)(nil), "core.ServerConnectResponse")
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterFile("control.proto", fileDescriptor_0c5120591600887d)
|
|
}
|
|
|
|
var fileDescriptor_0c5120591600887d = []byte{
|
|
// 434 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0xd1, 0x6e, 0xd3, 0x30,
|
|
0x14, 0x86, 0xd7, 0xd2, 0x75, 0xdb, 0x09, 0x1b, 0x99, 0xb7, 0x89, 0xc1, 0x0d, 0x90, 0xab, 0xaa,
|
|
0x48, 0x15, 0x1a, 0x4f, 0x90, 0x3a, 0x41, 0x54, 0x54, 0x29, 0x72, 0x3a, 0x2e, 0xb8, 0xa0, 0xca,
|
|
0x92, 0x23, 0x56, 0x91, 0xda, 0xc6, 0x76, 0x86, 0x26, 0x5e, 0x1e, 0xc5, 0x71, 0xd2, 0x16, 0x09,
|
|
0x89, 0xbb, 0x9e, 0x73, 0x7e, 0xfd, 0x9f, 0xbf, 0x2a, 0x70, 0x9a, 0x0b, 0x6e, 0x94, 0x28, 0x27,
|
|
0x52, 0x09, 0x23, 0xc8, 0x20, 0x17, 0x0a, 0x03, 0x0a, 0x87, 0xa9, 0x44, 0x2c, 0xc8, 0x0b, 0x38,
|
|
0xd6, 0xc8, 0x8b, 0xd5, 0x9d, 0xd4, 0xd7, 0xbd, 0xd7, 0xbd, 0xd1, 0x80, 0x1d, 0xd5, 0xf3, 0x54,
|
|
0x6a, 0xf2, 0x0a, 0x3c, 0x85, 0x39, 0xae, 0x1f, 0xd0, 0x5e, 0xfb, 0xf6, 0x0a, 0x6e, 0x35, 0x95,
|
|
0x3a, 0x88, 0x00, 0xa8, 0xc2, 0x02, 0xb9, 0x59, 0x67, 0x25, 0x79, 0x09, 0xc7, 0x95, 0x46, 0xc5,
|
|
0xb3, 0x0d, 0xda, 0xa6, 0x13, 0xd6, 0xcd, 0xf5, 0x4d, 0x66, 0x5a, 0xff, 0x12, 0xaa, 0xb0, 0x3d,
|
|
0x27, 0xac, 0x9b, 0x83, 0x7b, 0x38, 0xa7, 0xe5, 0x1a, 0xb9, 0x09, 0x2b, 0x73, 0xcf, 0xf0, 0x67,
|
|
0x85, 0xda, 0x90, 0x77, 0x00, 0x79, 0x57, 0x6d, 0xeb, 0xbc, 0x1b, 0x7f, 0x52, 0x3f, 0x7d, 0xb2,
|
|
0x45, 0xb2, 0x9d, 0x0c, 0x79, 0x03, 0x87, 0xba, 0x36, 0xb2, 0xfd, 0xde, 0x8d, 0xd7, 0x84, 0xad,
|
|
0x24, 0x6b, 0x2e, 0xc1, 0x6f, 0x20, 0x29, 0xaa, 0x07, 0x54, 0x0d, 0x49, 0x4b, 0xc1, 0x35, 0x92,
|
|
0x11, 0x0c, 0x15, 0xea, 0xaa, 0x34, 0x16, 0x73, 0xd6, 0x62, 0x5c, 0xa6, 0x2a, 0x0d, 0x73, 0x77,
|
|
0x72, 0x0d, 0x47, 0x1b, 0xd4, 0x3a, 0xfb, 0x8e, 0x4e, 0xa2, 0x1d, 0xb7, 0xf0, 0x27, 0xff, 0x84,
|
|
0x7f, 0x85, 0xcb, 0x46, 0x93, 0x0a, 0xce, 0x31, 0x37, 0xad, 0xe9, 0x08, 0x06, 0xe6, 0x51, 0xa2,
|
|
0x83, 0x5f, 0x3a, 0xc7, 0x26, 0xb3, 0x16, 0x7c, 0xf9, 0x28, 0x91, 0xd9, 0x44, 0x8d, 0xcf, 0x8a,
|
|
0x42, 0xa1, 0xd6, 0x2d, 0xde, 0x8d, 0xc1, 0x37, 0xb8, 0x6a, 0xc4, 0xba, 0x6e, 0xe7, 0xf6, 0xf6,
|
|
0x2f, 0xb7, 0x8b, 0xbd, 0xfa, 0xff, 0xd5, 0x1b, 0x27, 0x00, 0xdb, 0xbf, 0x83, 0xf8, 0xf0, 0x34,
|
|
0xbc, 0x5d, 0x7e, 0x5c, 0xa5, 0xb7, 0x94, 0xc6, 0x69, 0xea, 0x1f, 0x90, 0x2b, 0x38, 0xb7, 0x9b,
|
|
0x59, 0xf2, 0x25, 0x9c, 0xcf, 0xa2, 0x15, 0x65, 0x71, 0xe4, 0xf7, 0xc8, 0x73, 0xb8, 0x70, 0xeb,
|
|
0x65, 0xcc, 0x92, 0x70, 0xbe, 0x8a, 0x19, 0x5b, 0x30, 0xbf, 0x3f, 0x1e, 0xc1, 0xd9, 0xbe, 0x21,
|
|
0x01, 0x18, 0xa6, 0x46, 0x61, 0xb6, 0xf1, 0x0f, 0xea, 0xdf, 0x9f, 0xb3, 0xfc, 0x07, 0x1a, 0xbf,
|
|
0x37, 0x8e, 0xe0, 0x74, 0xef, 0xb1, 0x35, 0x9c, 0x2e, 0x92, 0x64, 0x07, 0xfe, 0x0c, 0x3c, 0xbb,
|
|
0xf9, 0x10, 0xce, 0xe6, 0x16, 0xdb, 0x46, 0xa6, 0xf3, 0x05, 0xfd, 0x14, 0x47, 0x7e, 0xff, 0x6e,
|
|
0x68, 0x3f, 0xfd, 0xf7, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xd2, 0x2f, 0x8d, 0x6f, 0x0b, 0x03,
|
|
0x00, 0x00,
|
|
}
|