edge_ctrl_pb

package
v0.17.19 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 13, 2020 License: Apache-2.0 Imports: 3 Imported by: 0

README

Prerequisites

  1. Install the protoc binary from: https://github.com/protocolbuffers/protobuf/releases
  2. Install the protoc plugin for Go go get -u github.com/golang/protobuf/protoc-gen-go
  3. Ensure protoc is on your path.
  4. Ensure your Go bin directory is on your path

Generate Go Code

Two options, run the command manually or use go generate

Go Generate

  1. Navigate to the root project
  2. run go generate edge/pb/edge_ctrl_pb/...

Note: Running a naked go generate will trigger all go:generate tags in the project, which you most likely do not want

Manually

  1. Navigate to the project root
  2. Run: protoc -I ./pb/edge_ctrl_pb/ ./pb/edge_ctrl_pb/edge_ctrl.proto --go_out=./pb/edge_ctrl_pb

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ContentType_name = map[int32]string{
	0:     "Zero",
	20000: "ServerHelloType",
	20001: "ClientHelloType",
	20002: "ErrorType",
	20100: "SessionAddedType",
	20101: "SessionUpdatedType",
	20102: "SessionRemovedType",
	20200: "ApiSessionAddedType",
	20201: "ApiSessionUpdatedType",
	20202: "ApiSessionRemovedType",
	20203: "ApiSessionHeartbeatType",
	20300: "EnrollType",
	20301: "EnrollCertsType",
}
View Source
var ContentType_value = map[string]int32{
	"Zero":                    0,
	"ServerHelloType":         20000,
	"ClientHelloType":         20001,
	"ErrorType":               20002,
	"SessionAddedType":        20100,
	"SessionUpdatedType":      20101,
	"SessionRemovedType":      20102,
	"ApiSessionAddedType":     20200,
	"ApiSessionUpdatedType":   20201,
	"ApiSessionRemovedType":   20202,
	"ApiSessionHeartbeatType": 20203,
	"EnrollType":              20300,
	"EnrollCertsType":         20301,
}
View Source
var PostureQuery_HashAlgorithm_name = map[int32]string{
	0: "SHA512",
}
View Source
var PostureQuery_HashAlgorithm_value = map[string]int32{
	"SHA512": 0,
}
View Source
var PostureQuery_Type_name = map[int32]string{
	0:  "OS",
	10: "MAC",
	20: "WINDOWS_DOMAIN",
	30: "PROCESS",
}
View Source
var PostureQuery_Type_value = map[string]int32{
	"OS":             0,
	"MAC":            10,
	"WINDOWS_DOMAIN": 20,
	"PROCESS":        30,
}
View Source
var PostureResponse_Error_Code_name = map[int32]string{
	0:  "UNKNOWN",
	10: "UNSUPPORTED_QUERY_TYPE",
	20: "UNSUPPORTED_HASH_ALGORITHM",
}
View Source
var PostureResponse_Error_Code_value = map[string]int32{
	"UNKNOWN":                    0,
	"UNSUPPORTED_QUERY_TYPE":     10,
	"UNSUPPORTED_HASH_ALGORITHM": 20,
}
View Source
var PostureResponse_OperatingSystem_Type_name = map[int32]string{
	0:  "Android",
	10: "iOS",
	20: "Linux",
	30: "macOS",
	40: "Windows",
	50: "WindowsServer",
}
View Source
var PostureResponse_OperatingSystem_Type_value = map[string]int32{
	"Android":       0,
	"iOS":           10,
	"Linux":         20,
	"macOS":         30,
	"Windows":       40,
	"WindowsServer": 50,
}
View Source
var SessionType_name = map[int32]string{
	0: "Dial",
	1: "Bind",
}
View Source
var SessionType_value = map[string]int32{
	"Dial": 0,
	"Bind": 1,
}

Functions

This section is empty.

Types

type ApiSession

type ApiSession struct {
	Token                string   `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	CertFingerprints     []string `protobuf:"bytes,2,rep,name=certFingerprints,proto3" json:"certFingerprints,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ApiSession) Descriptor

func (*ApiSession) Descriptor() ([]byte, []int)

func (*ApiSession) GetCertFingerprints

func (m *ApiSession) GetCertFingerprints() []string

func (*ApiSession) GetToken

func (m *ApiSession) GetToken() string

func (*ApiSession) ProtoMessage

func (*ApiSession) ProtoMessage()

func (*ApiSession) Reset

func (m *ApiSession) Reset()

func (*ApiSession) String

func (m *ApiSession) String() string

func (*ApiSession) XXX_DiscardUnknown

func (m *ApiSession) XXX_DiscardUnknown()

func (*ApiSession) XXX_Marshal

func (m *ApiSession) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApiSession) XXX_Merge

func (m *ApiSession) XXX_Merge(src proto.Message)

func (*ApiSession) XXX_Size

func (m *ApiSession) XXX_Size() int

func (*ApiSession) XXX_Unmarshal

func (m *ApiSession) XXX_Unmarshal(b []byte) error

type ApiSessionAdded

type ApiSessionAdded struct {
	IsFullState          bool          `protobuf:"varint,1,opt,name=isFullState,proto3" json:"isFullState,omitempty"`
	ApiSessions          []*ApiSession `protobuf:"bytes,2,rep,name=apiSessions,proto3" json:"apiSessions,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*ApiSessionAdded) Descriptor

func (*ApiSessionAdded) Descriptor() ([]byte, []int)

func (*ApiSessionAdded) GetApiSessions

func (m *ApiSessionAdded) GetApiSessions() []*ApiSession

func (*ApiSessionAdded) GetIsFullState

func (m *ApiSessionAdded) GetIsFullState() bool

func (*ApiSessionAdded) ProtoMessage

func (*ApiSessionAdded) ProtoMessage()

func (*ApiSessionAdded) Reset

func (m *ApiSessionAdded) Reset()

func (*ApiSessionAdded) String

func (m *ApiSessionAdded) String() string

func (*ApiSessionAdded) XXX_DiscardUnknown

func (m *ApiSessionAdded) XXX_DiscardUnknown()

func (*ApiSessionAdded) XXX_Marshal

func (m *ApiSessionAdded) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApiSessionAdded) XXX_Merge

func (m *ApiSessionAdded) XXX_Merge(src proto.Message)

func (*ApiSessionAdded) XXX_Size

func (m *ApiSessionAdded) XXX_Size() int

func (*ApiSessionAdded) XXX_Unmarshal

func (m *ApiSessionAdded) XXX_Unmarshal(b []byte) error

type ApiSessionHeartbeat

type ApiSessionHeartbeat struct {
	Tokens               []string `protobuf:"bytes,1,rep,name=tokens,proto3" json:"tokens,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ApiSessionHeartbeat) Descriptor

func (*ApiSessionHeartbeat) Descriptor() ([]byte, []int)

func (*ApiSessionHeartbeat) GetTokens

func (m *ApiSessionHeartbeat) GetTokens() []string

func (*ApiSessionHeartbeat) ProtoMessage

func (*ApiSessionHeartbeat) ProtoMessage()

func (*ApiSessionHeartbeat) Reset

func (m *ApiSessionHeartbeat) Reset()

func (*ApiSessionHeartbeat) String

func (m *ApiSessionHeartbeat) String() string

func (*ApiSessionHeartbeat) XXX_DiscardUnknown

func (m *ApiSessionHeartbeat) XXX_DiscardUnknown()

func (*ApiSessionHeartbeat) XXX_Marshal

func (m *ApiSessionHeartbeat) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApiSessionHeartbeat) XXX_Merge

func (m *ApiSessionHeartbeat) XXX_Merge(src proto.Message)

func (*ApiSessionHeartbeat) XXX_Size

func (m *ApiSessionHeartbeat) XXX_Size() int

func (*ApiSessionHeartbeat) XXX_Unmarshal

func (m *ApiSessionHeartbeat) XXX_Unmarshal(b []byte) error

type ApiSessionRemoved

type ApiSessionRemoved struct {
	Tokens               []string `protobuf:"bytes,1,rep,name=tokens,proto3" json:"tokens,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ApiSessionRemoved) Descriptor

func (*ApiSessionRemoved) Descriptor() ([]byte, []int)

func (*ApiSessionRemoved) GetTokens

func (m *ApiSessionRemoved) GetTokens() []string

func (*ApiSessionRemoved) ProtoMessage

func (*ApiSessionRemoved) ProtoMessage()

func (*ApiSessionRemoved) Reset

func (m *ApiSessionRemoved) Reset()

func (*ApiSessionRemoved) String

func (m *ApiSessionRemoved) String() string

func (*ApiSessionRemoved) XXX_DiscardUnknown

func (m *ApiSessionRemoved) XXX_DiscardUnknown()

func (*ApiSessionRemoved) XXX_Marshal

func (m *ApiSessionRemoved) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApiSessionRemoved) XXX_Merge

func (m *ApiSessionRemoved) XXX_Merge(src proto.Message)

func (*ApiSessionRemoved) XXX_Size

func (m *ApiSessionRemoved) XXX_Size() int

func (*ApiSessionRemoved) XXX_Unmarshal

func (m *ApiSessionRemoved) XXX_Unmarshal(b []byte) error

type ApiSessionUpdated

type ApiSessionUpdated struct {
	ApiSessions          []*ApiSession `protobuf:"bytes,1,rep,name=apiSessions,proto3" json:"apiSessions,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*ApiSessionUpdated) Descriptor

func (*ApiSessionUpdated) Descriptor() ([]byte, []int)

func (*ApiSessionUpdated) GetApiSessions

func (m *ApiSessionUpdated) GetApiSessions() []*ApiSession

func (*ApiSessionUpdated) ProtoMessage

func (*ApiSessionUpdated) ProtoMessage()

func (*ApiSessionUpdated) Reset

func (m *ApiSessionUpdated) Reset()

func (*ApiSessionUpdated) String

func (m *ApiSessionUpdated) String() string

func (*ApiSessionUpdated) XXX_DiscardUnknown

func (m *ApiSessionUpdated) XXX_DiscardUnknown()

func (*ApiSessionUpdated) XXX_Marshal

func (m *ApiSessionUpdated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApiSessionUpdated) XXX_Merge

func (m *ApiSessionUpdated) XXX_Merge(src proto.Message)

func (*ApiSessionUpdated) XXX_Size

func (m *ApiSessionUpdated) XXX_Size() int

func (*ApiSessionUpdated) XXX_Unmarshal

func (m *ApiSessionUpdated) XXX_Unmarshal(b []byte) error

type ClientHello

type ClientHello struct {
	Version              string            `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	Hostname             string            `protobuf:"bytes,2,opt,name=hostname,proto3" json:"hostname,omitempty"`
	Protocols            []string          `protobuf:"bytes,3,rep,name=protocols,proto3" json:"protocols,omitempty"`
	Data                 map[string]string `` /* 149-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*ClientHello) Descriptor

func (*ClientHello) Descriptor() ([]byte, []int)

func (*ClientHello) GetData

func (m *ClientHello) GetData() map[string]string

func (*ClientHello) GetHostname

func (m *ClientHello) GetHostname() string

func (*ClientHello) GetProtocols

func (m *ClientHello) GetProtocols() []string

func (*ClientHello) GetVersion

func (m *ClientHello) GetVersion() string

func (*ClientHello) ProtoMessage

func (*ClientHello) ProtoMessage()

func (*ClientHello) Reset

func (m *ClientHello) Reset()

func (*ClientHello) String

func (m *ClientHello) String() string

func (*ClientHello) XXX_DiscardUnknown

func (m *ClientHello) XXX_DiscardUnknown()

func (*ClientHello) XXX_Marshal

func (m *ClientHello) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClientHello) XXX_Merge

func (m *ClientHello) XXX_Merge(src proto.Message)

func (*ClientHello) XXX_Size

func (m *ClientHello) XXX_Size() int

func (*ClientHello) XXX_Unmarshal

func (m *ClientHello) XXX_Unmarshal(b []byte) error

type ContentType

type ContentType int32
const (
	ContentType_Zero                    ContentType = 0
	ContentType_ServerHelloType         ContentType = 20000
	ContentType_ClientHelloType         ContentType = 20001
	ContentType_ErrorType               ContentType = 20002
	ContentType_SessionAddedType        ContentType = 20100
	ContentType_SessionUpdatedType      ContentType = 20101
	ContentType_SessionRemovedType      ContentType = 20102
	ContentType_ApiSessionAddedType     ContentType = 20200
	ContentType_ApiSessionUpdatedType   ContentType = 20201
	ContentType_ApiSessionRemovedType   ContentType = 20202
	ContentType_ApiSessionHeartbeatType ContentType = 20203
	ContentType_EnrollType              ContentType = 20300
	ContentType_EnrollCertsType         ContentType = 20301
)

func (ContentType) EnumDescriptor

func (ContentType) EnumDescriptor() ([]byte, []int)

func (ContentType) String

func (x ContentType) String() string

type Error

type Error struct {
	Code                 string   `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	Message              string   `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	Cause                string   `protobuf:"bytes,3,opt,name=cause,proto3" json:"cause,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Error) Descriptor

func (*Error) Descriptor() ([]byte, []int)

func (*Error) GetCause

func (m *Error) GetCause() string

func (*Error) GetCode

func (m *Error) GetCode() string

func (*Error) GetMessage

func (m *Error) GetMessage() string

func (*Error) ProtoMessage

func (*Error) ProtoMessage()

func (*Error) Reset

func (m *Error) Reset()

func (*Error) String

func (m *Error) String() string

func (*Error) XXX_DiscardUnknown

func (m *Error) XXX_DiscardUnknown()

func (*Error) XXX_Marshal

func (m *Error) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Error) XXX_Merge

func (m *Error) XXX_Merge(src proto.Message)

func (*Error) XXX_Size

func (m *Error) XXX_Size() int

func (*Error) XXX_Unmarshal

func (m *Error) XXX_Unmarshal(b []byte) error

type PostureQuery added in v0.17.5

type PostureQuery struct {
	Id             string            `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	PostureCheckId string            `protobuf:"bytes,20,opt,name=postureCheckId,proto3" json:"postureCheckId,omitempty"`
	DisplayName    string            `protobuf:"bytes,30,opt,name=displayName,proto3" json:"displayName,omitempty"`
	Type           PostureQuery_Type `protobuf:"varint,40,opt,name=type,proto3,enum=edge_ctrl.pb.PostureQuery_Type" json:"type,omitempty"`
	Version        string            `protobuf:"bytes,50,opt,name=version,proto3" json:"version,omitempty"`
	// Types that are valid to be assigned to Parameters:
	//	*PostureQuery_Na
	//	*PostureQuery_Process_
	Parameters           isPostureQuery_Parameters `protobuf_oneof:"parameters"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*PostureQuery) Descriptor added in v0.17.5

func (*PostureQuery) Descriptor() ([]byte, []int)

func (*PostureQuery) GetDisplayName added in v0.17.5

func (m *PostureQuery) GetDisplayName() string

func (*PostureQuery) GetId added in v0.17.5

func (m *PostureQuery) GetId() string

func (*PostureQuery) GetNa added in v0.17.5

func (m *PostureQuery) GetNa() *PostureQuery_None

func (*PostureQuery) GetParameters added in v0.17.5

func (m *PostureQuery) GetParameters() isPostureQuery_Parameters

func (*PostureQuery) GetPostureCheckId added in v0.17.5

func (m *PostureQuery) GetPostureCheckId() string

func (*PostureQuery) GetProcess added in v0.17.5

func (m *PostureQuery) GetProcess() *PostureQuery_Process

func (*PostureQuery) GetType added in v0.17.5

func (m *PostureQuery) GetType() PostureQuery_Type

func (*PostureQuery) GetVersion added in v0.17.5

func (m *PostureQuery) GetVersion() string

func (*PostureQuery) ProtoMessage added in v0.17.5

func (*PostureQuery) ProtoMessage()

func (*PostureQuery) Reset added in v0.17.5

func (m *PostureQuery) Reset()

func (*PostureQuery) String added in v0.17.5

func (m *PostureQuery) String() string

func (*PostureQuery) XXX_DiscardUnknown added in v0.17.5

func (m *PostureQuery) XXX_DiscardUnknown()

func (*PostureQuery) XXX_Marshal added in v0.17.5

func (m *PostureQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PostureQuery) XXX_Merge added in v0.17.5

func (m *PostureQuery) XXX_Merge(src proto.Message)

func (*PostureQuery) XXX_OneofWrappers added in v0.17.5

func (*PostureQuery) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*PostureQuery) XXX_Size added in v0.17.5

func (m *PostureQuery) XXX_Size() int

func (*PostureQuery) XXX_Unmarshal added in v0.17.5

func (m *PostureQuery) XXX_Unmarshal(b []byte) error

type PostureQuery_HashAlgorithm added in v0.17.5

type PostureQuery_HashAlgorithm int32
const (
	PostureQuery_SHA512 PostureQuery_HashAlgorithm = 0
)

func (PostureQuery_HashAlgorithm) EnumDescriptor added in v0.17.5

func (PostureQuery_HashAlgorithm) EnumDescriptor() ([]byte, []int)

func (PostureQuery_HashAlgorithm) String added in v0.17.5

type PostureQuery_Na added in v0.17.5

type PostureQuery_Na struct {
	Na *PostureQuery_None `protobuf:"bytes,60,opt,name=na,proto3,oneof"`
}

type PostureQuery_None added in v0.17.5

type PostureQuery_None struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PostureQuery_None) Descriptor added in v0.17.5

func (*PostureQuery_None) Descriptor() ([]byte, []int)

func (*PostureQuery_None) ProtoMessage added in v0.17.5

func (*PostureQuery_None) ProtoMessage()

func (*PostureQuery_None) Reset added in v0.17.5

func (m *PostureQuery_None) Reset()

func (*PostureQuery_None) String added in v0.17.5

func (m *PostureQuery_None) String() string

func (*PostureQuery_None) XXX_DiscardUnknown added in v0.17.5

func (m *PostureQuery_None) XXX_DiscardUnknown()

func (*PostureQuery_None) XXX_Marshal added in v0.17.5

func (m *PostureQuery_None) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PostureQuery_None) XXX_Merge added in v0.17.5

func (m *PostureQuery_None) XXX_Merge(src proto.Message)

func (*PostureQuery_None) XXX_Size added in v0.17.5

func (m *PostureQuery_None) XXX_Size() int

func (*PostureQuery_None) XXX_Unmarshal added in v0.17.5

func (m *PostureQuery_None) XXX_Unmarshal(b []byte) error

type PostureQuery_Process added in v0.17.5

type PostureQuery_Process struct {
	Paths                []string                   `protobuf:"bytes,1,rep,name=paths,proto3" json:"paths,omitempty"`
	HashAlgorithm        PostureQuery_HashAlgorithm `` /* 126-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*PostureQuery_Process) Descriptor added in v0.17.5

func (*PostureQuery_Process) Descriptor() ([]byte, []int)

func (*PostureQuery_Process) GetHashAlgorithm added in v0.17.5

func (m *PostureQuery_Process) GetHashAlgorithm() PostureQuery_HashAlgorithm

func (*PostureQuery_Process) GetPaths added in v0.17.5

func (m *PostureQuery_Process) GetPaths() []string

func (*PostureQuery_Process) ProtoMessage added in v0.17.5

func (*PostureQuery_Process) ProtoMessage()

func (*PostureQuery_Process) Reset added in v0.17.5

func (m *PostureQuery_Process) Reset()

func (*PostureQuery_Process) String added in v0.17.5

func (m *PostureQuery_Process) String() string

func (*PostureQuery_Process) XXX_DiscardUnknown added in v0.17.5

func (m *PostureQuery_Process) XXX_DiscardUnknown()

func (*PostureQuery_Process) XXX_Marshal added in v0.17.5

func (m *PostureQuery_Process) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PostureQuery_Process) XXX_Merge added in v0.17.5

func (m *PostureQuery_Process) XXX_Merge(src proto.Message)

func (*PostureQuery_Process) XXX_Size added in v0.17.5

func (m *PostureQuery_Process) XXX_Size() int

func (*PostureQuery_Process) XXX_Unmarshal added in v0.17.5

func (m *PostureQuery_Process) XXX_Unmarshal(b []byte) error

type PostureQuery_Process_ added in v0.17.5

type PostureQuery_Process_ struct {
	Process *PostureQuery_Process `protobuf:"bytes,70,opt,name=process,proto3,oneof"`
}

type PostureQuery_Type added in v0.17.5

type PostureQuery_Type int32
const (
	PostureQuery_OS             PostureQuery_Type = 0
	PostureQuery_MAC            PostureQuery_Type = 10
	PostureQuery_WINDOWS_DOMAIN PostureQuery_Type = 20
	PostureQuery_PROCESS        PostureQuery_Type = 30
)

func (PostureQuery_Type) EnumDescriptor added in v0.17.5

func (PostureQuery_Type) EnumDescriptor() ([]byte, []int)

func (PostureQuery_Type) String added in v0.17.5

func (x PostureQuery_Type) String() string

type PostureResponse added in v0.17.5

type PostureResponse struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Types that are valid to be assigned to Payload:
	//	*PostureResponse_Error_
	//	*PostureResponse_Process
	//	*PostureResponse_Mac
	//	*PostureResponse_Domain
	//	*PostureResponse_Os
	Payload              isPostureResponse_Payload `protobuf_oneof:"payload"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*PostureResponse) Descriptor added in v0.17.5

func (*PostureResponse) Descriptor() ([]byte, []int)

func (*PostureResponse) GetDomain added in v0.17.5

func (*PostureResponse) GetError added in v0.17.5

func (m *PostureResponse) GetError() *PostureResponse_Error

func (*PostureResponse) GetId added in v0.17.5

func (m *PostureResponse) GetId() string

func (*PostureResponse) GetMac added in v0.17.5

func (*PostureResponse) GetOs added in v0.17.5

func (*PostureResponse) GetPayload added in v0.17.5

func (m *PostureResponse) GetPayload() isPostureResponse_Payload

func (*PostureResponse) GetProcess added in v0.17.5

func (m *PostureResponse) GetProcess() *PostureResponse_Proc

func (*PostureResponse) ProtoMessage added in v0.17.5

func (*PostureResponse) ProtoMessage()

func (*PostureResponse) Reset added in v0.17.5

func (m *PostureResponse) Reset()

func (*PostureResponse) String added in v0.17.5

func (m *PostureResponse) String() string

func (*PostureResponse) XXX_DiscardUnknown added in v0.17.5

func (m *PostureResponse) XXX_DiscardUnknown()

func (*PostureResponse) XXX_Marshal added in v0.17.5

func (m *PostureResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PostureResponse) XXX_Merge added in v0.17.5

func (m *PostureResponse) XXX_Merge(src proto.Message)

func (*PostureResponse) XXX_OneofWrappers added in v0.17.5

func (*PostureResponse) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*PostureResponse) XXX_Size added in v0.17.5

func (m *PostureResponse) XXX_Size() int

func (*PostureResponse) XXX_Unmarshal added in v0.17.5

func (m *PostureResponse) XXX_Unmarshal(b []byte) error

type PostureResponse_Domain added in v0.17.5

type PostureResponse_Domain struct {
	Domain *PostureResponse_WindowsDomain `protobuf:"bytes,50,opt,name=domain,proto3,oneof"`
}

type PostureResponse_Error added in v0.17.5

type PostureResponse_Error struct {
	Code                 PostureResponse_Error_Code `protobuf:"varint,1,opt,name=code,proto3,enum=edge_ctrl.pb.PostureResponse_Error_Code" json:"code,omitempty"`
	Message              string                     `protobuf:"bytes,10,opt,name=message,proto3" json:"message,omitempty"`
	Data                 map[string]string          `` /* 150-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*PostureResponse_Error) Descriptor added in v0.17.5

func (*PostureResponse_Error) Descriptor() ([]byte, []int)

func (*PostureResponse_Error) GetCode added in v0.17.5

func (*PostureResponse_Error) GetData added in v0.17.5

func (m *PostureResponse_Error) GetData() map[string]string

func (*PostureResponse_Error) GetMessage added in v0.17.5

func (m *PostureResponse_Error) GetMessage() string

func (*PostureResponse_Error) ProtoMessage added in v0.17.5

func (*PostureResponse_Error) ProtoMessage()

func (*PostureResponse_Error) Reset added in v0.17.5

func (m *PostureResponse_Error) Reset()

func (*PostureResponse_Error) String added in v0.17.5

func (m *PostureResponse_Error) String() string

func (*PostureResponse_Error) XXX_DiscardUnknown added in v0.17.5

func (m *PostureResponse_Error) XXX_DiscardUnknown()

func (*PostureResponse_Error) XXX_Marshal added in v0.17.5

func (m *PostureResponse_Error) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PostureResponse_Error) XXX_Merge added in v0.17.5

func (m *PostureResponse_Error) XXX_Merge(src proto.Message)

func (*PostureResponse_Error) XXX_Size added in v0.17.5

func (m *PostureResponse_Error) XXX_Size() int

func (*PostureResponse_Error) XXX_Unmarshal added in v0.17.5

func (m *PostureResponse_Error) XXX_Unmarshal(b []byte) error

type PostureResponse_Error_ added in v0.17.5

type PostureResponse_Error_ struct {
	Error *PostureResponse_Error `protobuf:"bytes,20,opt,name=error,proto3,oneof"`
}

type PostureResponse_Error_Code added in v0.17.5

type PostureResponse_Error_Code int32
const (
	PostureResponse_Error_UNKNOWN                    PostureResponse_Error_Code = 0
	PostureResponse_Error_UNSUPPORTED_QUERY_TYPE     PostureResponse_Error_Code = 10
	PostureResponse_Error_UNSUPPORTED_HASH_ALGORITHM PostureResponse_Error_Code = 20
)

func (PostureResponse_Error_Code) EnumDescriptor added in v0.17.5

func (PostureResponse_Error_Code) EnumDescriptor() ([]byte, []int)

func (PostureResponse_Error_Code) String added in v0.17.5

type PostureResponse_Mac added in v0.17.5

type PostureResponse_Mac struct {
	Mac *PostureResponse_MacAddresses `protobuf:"bytes,40,opt,name=mac,proto3,oneof"`
}

type PostureResponse_MacAddresses added in v0.17.5

type PostureResponse_MacAddresses struct {
	Addresses            []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PostureResponse_MacAddresses) Descriptor added in v0.17.5

func (*PostureResponse_MacAddresses) Descriptor() ([]byte, []int)

func (*PostureResponse_MacAddresses) GetAddresses added in v0.17.5

func (m *PostureResponse_MacAddresses) GetAddresses() []string

func (*PostureResponse_MacAddresses) ProtoMessage added in v0.17.5

func (*PostureResponse_MacAddresses) ProtoMessage()

func (*PostureResponse_MacAddresses) Reset added in v0.17.5

func (m *PostureResponse_MacAddresses) Reset()

func (*PostureResponse_MacAddresses) String added in v0.17.5

func (*PostureResponse_MacAddresses) XXX_DiscardUnknown added in v0.17.5

func (m *PostureResponse_MacAddresses) XXX_DiscardUnknown()

func (*PostureResponse_MacAddresses) XXX_Marshal added in v0.17.5

func (m *PostureResponse_MacAddresses) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PostureResponse_MacAddresses) XXX_Merge added in v0.17.5

func (m *PostureResponse_MacAddresses) XXX_Merge(src proto.Message)

func (*PostureResponse_MacAddresses) XXX_Size added in v0.17.5

func (m *PostureResponse_MacAddresses) XXX_Size() int

func (*PostureResponse_MacAddresses) XXX_Unmarshal added in v0.17.5

func (m *PostureResponse_MacAddresses) XXX_Unmarshal(b []byte) error

type PostureResponse_OperatingSystem added in v0.17.5

type PostureResponse_OperatingSystem struct {
	Type                 PostureResponse_OperatingSystem_Type `protobuf:"varint,1,opt,name=type,proto3,enum=edge_ctrl.pb.PostureResponse_OperatingSystem_Type" json:"type,omitempty"`
	Version              string                               `protobuf:"bytes,10,opt,name=version,proto3" json:"version,omitempty"`
	Build                string                               `protobuf:"bytes,20,opt,name=build,proto3" json:"build,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                             `json:"-"`
	XXX_unrecognized     []byte                               `json:"-"`
	XXX_sizecache        int32                                `json:"-"`
}

func (*PostureResponse_OperatingSystem) Descriptor added in v0.17.5

func (*PostureResponse_OperatingSystem) Descriptor() ([]byte, []int)

func (*PostureResponse_OperatingSystem) GetBuild added in v0.17.5

func (*PostureResponse_OperatingSystem) GetType added in v0.17.5

func (*PostureResponse_OperatingSystem) GetVersion added in v0.17.5

func (m *PostureResponse_OperatingSystem) GetVersion() string

func (*PostureResponse_OperatingSystem) ProtoMessage added in v0.17.5

func (*PostureResponse_OperatingSystem) ProtoMessage()

func (*PostureResponse_OperatingSystem) Reset added in v0.17.5

func (*PostureResponse_OperatingSystem) String added in v0.17.5

func (*PostureResponse_OperatingSystem) XXX_DiscardUnknown added in v0.17.5

func (m *PostureResponse_OperatingSystem) XXX_DiscardUnknown()

func (*PostureResponse_OperatingSystem) XXX_Marshal added in v0.17.5

func (m *PostureResponse_OperatingSystem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PostureResponse_OperatingSystem) XXX_Merge added in v0.17.5

func (m *PostureResponse_OperatingSystem) XXX_Merge(src proto.Message)

func (*PostureResponse_OperatingSystem) XXX_Size added in v0.17.5

func (m *PostureResponse_OperatingSystem) XXX_Size() int

func (*PostureResponse_OperatingSystem) XXX_Unmarshal added in v0.17.5

func (m *PostureResponse_OperatingSystem) XXX_Unmarshal(b []byte) error

type PostureResponse_OperatingSystem_Type added in v0.17.5

type PostureResponse_OperatingSystem_Type int32
const (
	PostureResponse_OperatingSystem_Android       PostureResponse_OperatingSystem_Type = 0
	PostureResponse_OperatingSystem_iOS           PostureResponse_OperatingSystem_Type = 10
	PostureResponse_OperatingSystem_Linux         PostureResponse_OperatingSystem_Type = 20
	PostureResponse_OperatingSystem_macOS         PostureResponse_OperatingSystem_Type = 30
	PostureResponse_OperatingSystem_Windows       PostureResponse_OperatingSystem_Type = 40
	PostureResponse_OperatingSystem_WindowsServer PostureResponse_OperatingSystem_Type = 50
)

func (PostureResponse_OperatingSystem_Type) EnumDescriptor added in v0.17.5

func (PostureResponse_OperatingSystem_Type) EnumDescriptor() ([]byte, []int)

func (PostureResponse_OperatingSystem_Type) String added in v0.17.5

type PostureResponse_Os added in v0.17.5

type PostureResponse_Os struct {
	Os *PostureResponse_OperatingSystem `protobuf:"bytes,60,opt,name=os,proto3,oneof"`
}

type PostureResponse_Proc added in v0.17.5

type PostureResponse_Proc struct {
	BinaryHash           string   `protobuf:"bytes,1,opt,name=binaryHash,proto3" json:"binaryHash,omitempty"`
	SignerFingerprint    string   `protobuf:"bytes,10,opt,name=signerFingerprint,proto3" json:"signerFingerprint,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PostureResponse_Proc) Descriptor added in v0.17.5

func (*PostureResponse_Proc) Descriptor() ([]byte, []int)

func (*PostureResponse_Proc) GetBinaryHash added in v0.17.5

func (m *PostureResponse_Proc) GetBinaryHash() string

func (*PostureResponse_Proc) GetSignerFingerprint added in v0.17.5

func (m *PostureResponse_Proc) GetSignerFingerprint() string

func (*PostureResponse_Proc) ProtoMessage added in v0.17.5

func (*PostureResponse_Proc) ProtoMessage()

func (*PostureResponse_Proc) Reset added in v0.17.5

func (m *PostureResponse_Proc) Reset()

func (*PostureResponse_Proc) String added in v0.17.5

func (m *PostureResponse_Proc) String() string

func (*PostureResponse_Proc) XXX_DiscardUnknown added in v0.17.5

func (m *PostureResponse_Proc) XXX_DiscardUnknown()

func (*PostureResponse_Proc) XXX_Marshal added in v0.17.5

func (m *PostureResponse_Proc) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PostureResponse_Proc) XXX_Merge added in v0.17.5

func (m *PostureResponse_Proc) XXX_Merge(src proto.Message)

func (*PostureResponse_Proc) XXX_Size added in v0.17.5

func (m *PostureResponse_Proc) XXX_Size() int

func (*PostureResponse_Proc) XXX_Unmarshal added in v0.17.5

func (m *PostureResponse_Proc) XXX_Unmarshal(b []byte) error

type PostureResponse_Process added in v0.17.5

type PostureResponse_Process struct {
	Process *PostureResponse_Proc `protobuf:"bytes,30,opt,name=process,proto3,oneof"`
}

type PostureResponse_WindowsDomain added in v0.17.5

type PostureResponse_WindowsDomain struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PostureResponse_WindowsDomain) Descriptor added in v0.17.5

func (*PostureResponse_WindowsDomain) Descriptor() ([]byte, []int)

func (*PostureResponse_WindowsDomain) GetName added in v0.17.5

func (*PostureResponse_WindowsDomain) ProtoMessage added in v0.17.5

func (*PostureResponse_WindowsDomain) ProtoMessage()

func (*PostureResponse_WindowsDomain) Reset added in v0.17.5

func (m *PostureResponse_WindowsDomain) Reset()

func (*PostureResponse_WindowsDomain) String added in v0.17.5

func (*PostureResponse_WindowsDomain) XXX_DiscardUnknown added in v0.17.5

func (m *PostureResponse_WindowsDomain) XXX_DiscardUnknown()

func (*PostureResponse_WindowsDomain) XXX_Marshal added in v0.17.5

func (m *PostureResponse_WindowsDomain) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PostureResponse_WindowsDomain) XXX_Merge added in v0.17.5

func (m *PostureResponse_WindowsDomain) XXX_Merge(src proto.Message)

func (*PostureResponse_WindowsDomain) XXX_Size added in v0.17.5

func (m *PostureResponse_WindowsDomain) XXX_Size() int

func (*PostureResponse_WindowsDomain) XXX_Unmarshal added in v0.17.5

func (m *PostureResponse_WindowsDomain) XXX_Unmarshal(b []byte) error

type ServerHello

type ServerHello struct {
	Version              string            `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	Data                 map[string]string `` /* 149-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*ServerHello) Descriptor

func (*ServerHello) Descriptor() ([]byte, []int)

func (*ServerHello) GetData

func (m *ServerHello) GetData() map[string]string

func (*ServerHello) GetVersion

func (m *ServerHello) GetVersion() string

func (*ServerHello) ProtoMessage

func (*ServerHello) ProtoMessage()

func (*ServerHello) Reset

func (m *ServerHello) Reset()

func (*ServerHello) String

func (m *ServerHello) String() string

func (*ServerHello) XXX_DiscardUnknown

func (m *ServerHello) XXX_DiscardUnknown()

func (*ServerHello) XXX_Marshal

func (m *ServerHello) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ServerHello) XXX_Merge

func (m *ServerHello) XXX_Merge(src proto.Message)

func (*ServerHello) XXX_Size

func (m *ServerHello) XXX_Size() int

func (*ServerHello) XXX_Unmarshal

func (m *ServerHello) XXX_Unmarshal(b []byte) error

type Service

type Service struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	EncryptionRequired   bool     `protobuf:"varint,3,opt,name=encryptionRequired,proto3" json:"encryptionRequired,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Service) Descriptor

func (*Service) Descriptor() ([]byte, []int)

func (*Service) GetEncryptionRequired added in v0.15.30

func (m *Service) GetEncryptionRequired() bool

func (*Service) GetId

func (m *Service) GetId() string

func (*Service) GetName

func (m *Service) GetName() string

func (*Service) ProtoMessage

func (*Service) ProtoMessage()

func (*Service) Reset

func (m *Service) Reset()

func (*Service) String

func (m *Service) String() string

func (*Service) XXX_DiscardUnknown

func (m *Service) XXX_DiscardUnknown()

func (*Service) XXX_Marshal

func (m *Service) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Service) XXX_Merge

func (m *Service) XXX_Merge(src proto.Message)

func (*Service) XXX_Size

func (m *Service) XXX_Size() int

func (*Service) XXX_Unmarshal

func (m *Service) XXX_Unmarshal(b []byte) error

type Session

type Session struct {
	Token                string      `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	Type                 SessionType `protobuf:"varint,2,opt,name=type,proto3,enum=edge_ctrl.pb.SessionType" json:"type,omitempty"`
	CertFingerprints     []string    `protobuf:"bytes,3,rep,name=certFingerprints,proto3" json:"certFingerprints,omitempty"`
	Urls                 []string    `protobuf:"bytes,4,rep,name=urls,proto3" json:"urls,omitempty"`
	Service              *Service    `protobuf:"bytes,5,opt,name=service,proto3" json:"service,omitempty"`
	Id                   string      `protobuf:"bytes,7,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (*Session) Descriptor

func (*Session) Descriptor() ([]byte, []int)

func (*Session) GetCertFingerprints

func (m *Session) GetCertFingerprints() []string

func (*Session) GetId added in v0.16.4

func (m *Session) GetId() string

func (*Session) GetService

func (m *Session) GetService() *Service

func (*Session) GetToken

func (m *Session) GetToken() string

func (*Session) GetType

func (m *Session) GetType() SessionType

func (*Session) GetUrls

func (m *Session) GetUrls() []string

func (*Session) ProtoMessage

func (*Session) ProtoMessage()

func (*Session) Reset

func (m *Session) Reset()

func (*Session) String

func (m *Session) String() string

func (*Session) XXX_DiscardUnknown

func (m *Session) XXX_DiscardUnknown()

func (*Session) XXX_Marshal

func (m *Session) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Session) XXX_Merge

func (m *Session) XXX_Merge(src proto.Message)

func (*Session) XXX_Size

func (m *Session) XXX_Size() int

func (*Session) XXX_Unmarshal

func (m *Session) XXX_Unmarshal(b []byte) error

type SessionAdded

type SessionAdded struct {
	IsFullState          bool       `protobuf:"varint,1,opt,name=isFullState,proto3" json:"isFullState,omitempty"`
	Sessions             []*Session `protobuf:"bytes,2,rep,name=sessions,proto3" json:"sessions,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*SessionAdded) Descriptor

func (*SessionAdded) Descriptor() ([]byte, []int)

func (*SessionAdded) GetIsFullState

func (m *SessionAdded) GetIsFullState() bool

func (*SessionAdded) GetSessions

func (m *SessionAdded) GetSessions() []*Session

func (*SessionAdded) ProtoMessage

func (*SessionAdded) ProtoMessage()

func (*SessionAdded) Reset

func (m *SessionAdded) Reset()

func (*SessionAdded) String

func (m *SessionAdded) String() string

func (*SessionAdded) XXX_DiscardUnknown

func (m *SessionAdded) XXX_DiscardUnknown()

func (*SessionAdded) XXX_Marshal

func (m *SessionAdded) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SessionAdded) XXX_Merge

func (m *SessionAdded) XXX_Merge(src proto.Message)

func (*SessionAdded) XXX_Size

func (m *SessionAdded) XXX_Size() int

func (*SessionAdded) XXX_Unmarshal

func (m *SessionAdded) XXX_Unmarshal(b []byte) error

type SessionRemoved

type SessionRemoved struct {
	Tokens               []string `protobuf:"bytes,1,rep,name=tokens,proto3" json:"tokens,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SessionRemoved) Descriptor

func (*SessionRemoved) Descriptor() ([]byte, []int)

func (*SessionRemoved) GetTokens

func (m *SessionRemoved) GetTokens() []string

func (*SessionRemoved) ProtoMessage

func (*SessionRemoved) ProtoMessage()

func (*SessionRemoved) Reset

func (m *SessionRemoved) Reset()

func (*SessionRemoved) String

func (m *SessionRemoved) String() string

func (*SessionRemoved) XXX_DiscardUnknown

func (m *SessionRemoved) XXX_DiscardUnknown()

func (*SessionRemoved) XXX_Marshal

func (m *SessionRemoved) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SessionRemoved) XXX_Merge

func (m *SessionRemoved) XXX_Merge(src proto.Message)

func (*SessionRemoved) XXX_Size

func (m *SessionRemoved) XXX_Size() int

func (*SessionRemoved) XXX_Unmarshal

func (m *SessionRemoved) XXX_Unmarshal(b []byte) error

type SessionType

type SessionType int32
const (
	SessionType_Dial SessionType = 0
	SessionType_Bind SessionType = 1
)

func (SessionType) EnumDescriptor

func (SessionType) EnumDescriptor() ([]byte, []int)

func (SessionType) String

func (x SessionType) String() string

type SessionUpdated

type SessionUpdated struct {
	Token                string   `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	Urls                 []string `protobuf:"bytes,2,rep,name=urls,proto3" json:"urls,omitempty"`
	Service              *Service `protobuf:"bytes,3,opt,name=service,proto3" json:"service,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SessionUpdated) Descriptor

func (*SessionUpdated) Descriptor() ([]byte, []int)

func (*SessionUpdated) GetService

func (m *SessionUpdated) GetService() *Service

func (*SessionUpdated) GetToken

func (m *SessionUpdated) GetToken() string

func (*SessionUpdated) GetUrls

func (m *SessionUpdated) GetUrls() []string

func (*SessionUpdated) ProtoMessage

func (*SessionUpdated) ProtoMessage()

func (*SessionUpdated) Reset

func (m *SessionUpdated) Reset()

func (*SessionUpdated) String

func (m *SessionUpdated) String() string

func (*SessionUpdated) XXX_DiscardUnknown

func (m *SessionUpdated) XXX_DiscardUnknown()

func (*SessionUpdated) XXX_Marshal

func (m *SessionUpdated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SessionUpdated) XXX_Merge

func (m *SessionUpdated) XXX_Merge(src proto.Message)

func (*SessionUpdated) XXX_Size

func (m *SessionUpdated) XXX_Size() int

func (*SessionUpdated) XXX_Unmarshal

func (m *SessionUpdated) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL