cyberprobe

package
v0.4.2 Latest Latest
Warning

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

Go to latest
Published: Jul 2, 2020 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Action_name = map[int32]string{
	0:  "dns_message",
	2:  "unrecognised_datagram",
	3:  "unrecognised_stream",
	4:  "icmp_message",
	5:  "http_request",
	6:  "http_response",
	7:  "sip_request",
	8:  "sip_response",
	9:  "sip_ssl_message",
	10: "imap_message",
	11: "imap_ssl_message",
	12: "pop3_message",
	13: "pop3_ssl_message",
	14: "ntp_timestamp",
	15: "ntp_control",
	16: "ntp_private",
	17: "ftp_command",
	18: "ftp_response",
	19: "smtp_command",
	20: "smtp_response",
	21: "smtp_data_message",
	22: "smtp_auth_message",
	23: "gre_message",
	24: "gre_pptp_message",
	25: "esp_message",
	26: "unrecognised_ip_protocol",
	27: "wlan_message",
	28: "tls_unknown",
	29: "tls_client_hello",
	30: "tls_server_hello",
	31: "tls_certificates",
	32: "tls_server_key_exchange",
	33: "tls_server_hello_done",
	34: "tls_handshake_generic",
	35: "tls_certificate_request",
	36: "tls_client_key_exchange",
	37: "tls_certificate_verify",
	38: "tls_change_cipher_spec",
	39: "tls_handshake_finished",
	40: "tls_handshake_complete",
	41: "tls_application_data",
	42: "rtp_message",
	43: "rtp_ssl_message",
	44: "trigger_up",
	45: "trigger_down",
	46: "connection_up",
	47: "connection_down",
}
View Source
var Action_value = map[string]int32{
	"dns_message":              0,
	"unrecognised_datagram":    2,
	"unrecognised_stream":      3,
	"icmp_message":             4,
	"http_request":             5,
	"http_response":            6,
	"sip_request":              7,
	"sip_response":             8,
	"sip_ssl_message":          9,
	"imap_message":             10,
	"imap_ssl_message":         11,
	"pop3_message":             12,
	"pop3_ssl_message":         13,
	"ntp_timestamp":            14,
	"ntp_control":              15,
	"ntp_private":              16,
	"ftp_command":              17,
	"ftp_response":             18,
	"smtp_command":             19,
	"smtp_response":            20,
	"smtp_data_message":        21,
	"smtp_auth_message":        22,
	"gre_message":              23,
	"gre_pptp_message":         24,
	"esp_message":              25,
	"unrecognised_ip_protocol": 26,
	"wlan_message":             27,
	"tls_unknown":              28,
	"tls_client_hello":         29,
	"tls_server_hello":         30,
	"tls_certificates":         31,
	"tls_server_key_exchange":  32,
	"tls_server_hello_done":    33,
	"tls_handshake_generic":    34,
	"tls_certificate_request":  35,
	"tls_client_key_exchange":  36,
	"tls_certificate_verify":   37,
	"tls_change_cipher_spec":   38,
	"tls_handshake_finished":   39,
	"tls_handshake_complete":   40,
	"tls_application_data":     41,
	"rtp_message":              42,
	"rtp_ssl_message":          43,
	"trigger_up":               44,
	"trigger_down":             45,
	"connection_up":            46,
	"connection_down":          47,
}
View Source
var DnsMessageType_name = map[int32]string{
	0: "query",
	1: "response",
}
View Source
var DnsMessageType_value = map[string]int32{
	"query":    0,
	"response": 1,
}
View Source
var Origin_name = map[int32]string{
	0: "unspecified",
	1: "device",
	2: "network",
}
View Source
var Origin_value = map[string]int32{
	"unspecified": 0,
	"device":      1,
	"network":     2,
}
View Source
var Protocol_name = map[int32]string{
	0:  "unknown",
	1:  "ipv4",
	2:  "ipv6",
	3:  "tcp",
	4:  "udp",
	5:  "icmp",
	6:  "http",
	7:  "dns",
	8:  "smtp",
	9:  "ftp",
	10: "ntp",
	11: "imap",
	12: "imap_ssl",
	13: "pop3",
	14: "pop3_ssl",
	15: "rtp",
	16: "rtp_ssl",
	17: "sip",
	18: "sip_ssl",
	19: "smtp_auth",
	20: "gre",
	21: "esp",
	22: "wlan",
	23: "tls",
	24: "unrecognised",
}
View Source
var Protocol_value = map[string]int32{
	"unknown":      0,
	"ipv4":         1,
	"ipv6":         2,
	"tcp":          3,
	"udp":          4,
	"icmp":         5,
	"http":         6,
	"dns":          7,
	"smtp":         8,
	"ftp":          9,
	"ntp":          10,
	"imap":         11,
	"imap_ssl":     12,
	"pop3":         13,
	"pop3_ssl":     14,
	"rtp":          15,
	"rtp_ssl":      16,
	"sip":          17,
	"sip_ssl":      18,
	"smtp_auth":    19,
	"gre":          20,
	"esp":          21,
	"wlan":         22,
	"tls":          23,
	"unrecognised": 24,
}

Functions

func RegisterEventStreamServer

func RegisterEventStreamServer(s *grpc.Server, srv EventStreamServer)

Types

type Action

type Action int32
const (
	Action_dns_message              Action = 0
	Action_unrecognised_datagram    Action = 2
	Action_unrecognised_stream      Action = 3
	Action_icmp_message             Action = 4
	Action_http_request             Action = 5
	Action_http_response            Action = 6
	Action_sip_request              Action = 7
	Action_sip_response             Action = 8
	Action_sip_ssl_message          Action = 9
	Action_imap_message             Action = 10
	Action_imap_ssl_message         Action = 11
	Action_pop3_message             Action = 12
	Action_pop3_ssl_message         Action = 13
	Action_ntp_timestamp            Action = 14
	Action_ntp_control              Action = 15
	Action_ntp_private              Action = 16
	Action_ftp_command              Action = 17
	Action_ftp_response             Action = 18
	Action_smtp_command             Action = 19
	Action_smtp_response            Action = 20
	Action_smtp_data_message        Action = 21
	Action_smtp_auth_message        Action = 22
	Action_gre_message              Action = 23
	Action_gre_pptp_message         Action = 24
	Action_esp_message              Action = 25
	Action_unrecognised_ip_protocol Action = 26
	Action_wlan_message             Action = 27
	Action_tls_unknown              Action = 28
	Action_tls_client_hello         Action = 29
	Action_tls_server_hello         Action = 30
	Action_tls_certificates         Action = 31
	Action_tls_server_key_exchange  Action = 32
	Action_tls_server_hello_done    Action = 33
	Action_tls_handshake_generic    Action = 34
	Action_tls_certificate_request  Action = 35
	Action_tls_client_key_exchange  Action = 36
	Action_tls_certificate_verify   Action = 37
	Action_tls_change_cipher_spec   Action = 38
	Action_tls_handshake_finished   Action = 39
	Action_tls_handshake_complete   Action = 40
	Action_tls_application_data     Action = 41
	Action_rtp_message              Action = 42
	Action_rtp_ssl_message          Action = 43
	Action_trigger_up               Action = 44
	Action_trigger_down             Action = 45
	Action_connection_up            Action = 46
	Action_connection_down          Action = 47
)

func (Action) EnumDescriptor

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

func (Action) String

func (x Action) String() string

type Address

type Address struct {
	// Types that are valid to be assigned to AddressVariant:
	//	*Address_Ipv4
	//	*Address_Ipv6
	//	*Address_Port
	//	*Address_Empty
	AddressVariant       isAddress_AddressVariant `protobuf_oneof:"address_variant"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

func (*Address) Descriptor

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

func (*Address) GetAddressVariant

func (m *Address) GetAddressVariant() isAddress_AddressVariant

func (*Address) GetEmpty

func (m *Address) GetEmpty() *Empty

func (*Address) GetIpv4

func (m *Address) GetIpv4() uint32

func (*Address) GetIpv6

func (m *Address) GetIpv6() []byte

func (*Address) GetPort

func (m *Address) GetPort() uint32

func (*Address) ProtoMessage

func (*Address) ProtoMessage()

func (*Address) Reset

func (m *Address) Reset()

func (*Address) String

func (m *Address) String() string

func (*Address) XXX_DiscardUnknown

func (m *Address) XXX_DiscardUnknown()

func (*Address) XXX_Marshal

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

func (*Address) XXX_Merge

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

func (*Address) XXX_OneofWrappers

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

XXX_OneofWrappers is for the internal use of the proto package.

func (*Address) XXX_Size

func (m *Address) XXX_Size() int

func (*Address) XXX_Unmarshal

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

type Address_Empty

type Address_Empty struct {
	Empty *Empty `protobuf:"bytes,4,opt,name=empty,proto3,oneof"`
}

type Address_Ipv4

type Address_Ipv4 struct {
	Ipv4 uint32 `protobuf:"fixed32,1,opt,name=ipv4,proto3,oneof"`
}

type Address_Ipv6

type Address_Ipv6 struct {
	Ipv6 []byte `protobuf:"bytes,2,opt,name=ipv6,proto3,oneof"`
}

type Address_Port

type Address_Port struct {
	Port uint32 `protobuf:"varint,3,opt,name=port,proto3,oneof"`
}

type ConnectionDown

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

func (*ConnectionDown) Descriptor

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

func (*ConnectionDown) ProtoMessage

func (*ConnectionDown) ProtoMessage()

func (*ConnectionDown) Reset

func (m *ConnectionDown) Reset()

func (*ConnectionDown) String

func (m *ConnectionDown) String() string

func (*ConnectionDown) XXX_DiscardUnknown

func (m *ConnectionDown) XXX_DiscardUnknown()

func (*ConnectionDown) XXX_Marshal

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

func (*ConnectionDown) XXX_Merge

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

func (*ConnectionDown) XXX_Size

func (m *ConnectionDown) XXX_Size() int

func (*ConnectionDown) XXX_Unmarshal

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

type ConnectionUp

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

func (*ConnectionUp) Descriptor

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

func (*ConnectionUp) ProtoMessage

func (*ConnectionUp) ProtoMessage()

func (*ConnectionUp) Reset

func (m *ConnectionUp) Reset()

func (*ConnectionUp) String

func (m *ConnectionUp) String() string

func (*ConnectionUp) XXX_DiscardUnknown

func (m *ConnectionUp) XXX_DiscardUnknown()

func (*ConnectionUp) XXX_Marshal

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

func (*ConnectionUp) XXX_Merge

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

func (*ConnectionUp) XXX_Size

func (m *ConnectionUp) XXX_Size() int

func (*ConnectionUp) XXX_Unmarshal

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

type DnsAnswer

type DnsAnswer struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Type                 string   `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Class                string   `protobuf:"bytes,3,opt,name=class,proto3" json:"class,omitempty"`
	Address              *Address `protobuf:"bytes,4,opt,name=address,proto3" json:"address,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DnsAnswer) Descriptor

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

func (*DnsAnswer) GetAddress

func (m *DnsAnswer) GetAddress() *Address

func (*DnsAnswer) GetClass

func (m *DnsAnswer) GetClass() string

func (*DnsAnswer) GetName

func (m *DnsAnswer) GetName() string

func (*DnsAnswer) GetType

func (m *DnsAnswer) GetType() string

func (*DnsAnswer) ProtoMessage

func (*DnsAnswer) ProtoMessage()

func (*DnsAnswer) Reset

func (m *DnsAnswer) Reset()

func (*DnsAnswer) String

func (m *DnsAnswer) String() string

func (*DnsAnswer) XXX_DiscardUnknown

func (m *DnsAnswer) XXX_DiscardUnknown()

func (*DnsAnswer) XXX_Marshal

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

func (*DnsAnswer) XXX_Merge

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

func (*DnsAnswer) XXX_Size

func (m *DnsAnswer) XXX_Size() int

func (*DnsAnswer) XXX_Unmarshal

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

type DnsHeader

type DnsHeader struct {
	Id                   uint32   `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Qr                   uint32   `protobuf:"varint,2,opt,name=qr,proto3" json:"qr,omitempty"`
	Opcode               uint32   `protobuf:"varint,3,opt,name=opcode,proto3" json:"opcode,omitempty"`
	Aa                   uint32   `protobuf:"varint,4,opt,name=aa,proto3" json:"aa,omitempty"`
	Tc                   uint32   `protobuf:"varint,5,opt,name=tc,proto3" json:"tc,omitempty"`
	Rd                   uint32   `protobuf:"varint,6,opt,name=rd,proto3" json:"rd,omitempty"`
	Ra                   uint32   `protobuf:"varint,7,opt,name=ra,proto3" json:"ra,omitempty"`
	Rcode                uint32   `protobuf:"varint,8,opt,name=rcode,proto3" json:"rcode,omitempty"`
	Qdcount              uint32   `protobuf:"varint,9,opt,name=qdcount,proto3" json:"qdcount,omitempty"`
	Ancount              uint32   `protobuf:"varint,10,opt,name=ancount,proto3" json:"ancount,omitempty"`
	Nscount              uint32   `protobuf:"varint,11,opt,name=nscount,proto3" json:"nscount,omitempty"`
	Arcount              uint32   `protobuf:"varint,12,opt,name=arcount,proto3" json:"arcount,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DnsHeader) Descriptor

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

func (*DnsHeader) GetAa

func (m *DnsHeader) GetAa() uint32

func (*DnsHeader) GetAncount

func (m *DnsHeader) GetAncount() uint32

func (*DnsHeader) GetArcount

func (m *DnsHeader) GetArcount() uint32

func (*DnsHeader) GetId

func (m *DnsHeader) GetId() uint32

func (*DnsHeader) GetNscount

func (m *DnsHeader) GetNscount() uint32

func (*DnsHeader) GetOpcode

func (m *DnsHeader) GetOpcode() uint32

func (*DnsHeader) GetQdcount

func (m *DnsHeader) GetQdcount() uint32

func (*DnsHeader) GetQr

func (m *DnsHeader) GetQr() uint32

func (*DnsHeader) GetRa

func (m *DnsHeader) GetRa() uint32

func (*DnsHeader) GetRcode

func (m *DnsHeader) GetRcode() uint32

func (*DnsHeader) GetRd

func (m *DnsHeader) GetRd() uint32

func (*DnsHeader) GetTc

func (m *DnsHeader) GetTc() uint32

func (*DnsHeader) ProtoMessage

func (*DnsHeader) ProtoMessage()

func (*DnsHeader) Reset

func (m *DnsHeader) Reset()

func (*DnsHeader) String

func (m *DnsHeader) String() string

func (*DnsHeader) XXX_DiscardUnknown

func (m *DnsHeader) XXX_DiscardUnknown()

func (*DnsHeader) XXX_Marshal

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

func (*DnsHeader) XXX_Merge

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

func (*DnsHeader) XXX_Size

func (m *DnsHeader) XXX_Size() int

func (*DnsHeader) XXX_Unmarshal

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

type DnsMessage

type DnsMessage struct {
	Header               *DnsHeader     `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	Query                []*DnsQuery    `protobuf:"bytes,2,rep,name=query,proto3" json:"query,omitempty"`
	Answer               []*DnsAnswer   `protobuf:"bytes,3,rep,name=answer,proto3" json:"answer,omitempty"`
	Authority            []*DnsAnswer   `protobuf:"bytes,4,rep,name=authority,proto3" json:"authority,omitempty"`
	Additional           []*DnsAnswer   `protobuf:"bytes,5,rep,name=additional,proto3" json:"additional,omitempty"`
	Type                 DnsMessageType `protobuf:"varint,8,opt,name=type,proto3,enum=cyberprobe.DnsMessageType" json:"type,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DnsMessage) Descriptor

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

func (*DnsMessage) GetAdditional

func (m *DnsMessage) GetAdditional() []*DnsAnswer

func (*DnsMessage) GetAnswer

func (m *DnsMessage) GetAnswer() []*DnsAnswer

func (*DnsMessage) GetAuthority

func (m *DnsMessage) GetAuthority() []*DnsAnswer

func (*DnsMessage) GetHeader

func (m *DnsMessage) GetHeader() *DnsHeader

func (*DnsMessage) GetQuery

func (m *DnsMessage) GetQuery() []*DnsQuery

func (*DnsMessage) GetType

func (m *DnsMessage) GetType() DnsMessageType

func (*DnsMessage) ProtoMessage

func (*DnsMessage) ProtoMessage()

func (*DnsMessage) Reset

func (m *DnsMessage) Reset()

func (*DnsMessage) String

func (m *DnsMessage) String() string

func (*DnsMessage) XXX_DiscardUnknown

func (m *DnsMessage) XXX_DiscardUnknown()

func (*DnsMessage) XXX_Marshal

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

func (*DnsMessage) XXX_Merge

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

func (*DnsMessage) XXX_Size

func (m *DnsMessage) XXX_Size() int

func (*DnsMessage) XXX_Unmarshal

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

type DnsMessageType

type DnsMessageType int32
const (
	DnsMessageType_query    DnsMessageType = 0
	DnsMessageType_response DnsMessageType = 1
)

func (DnsMessageType) EnumDescriptor

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

func (DnsMessageType) String

func (x DnsMessageType) String() string

type DnsQuery

type DnsQuery struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Type                 string   `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Class                string   `protobuf:"bytes,3,opt,name=class,proto3" json:"class,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DnsQuery) Descriptor

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

func (*DnsQuery) GetClass

func (m *DnsQuery) GetClass() string

func (*DnsQuery) GetName

func (m *DnsQuery) GetName() string

func (*DnsQuery) GetType

func (m *DnsQuery) GetType() string

func (*DnsQuery) ProtoMessage

func (*DnsQuery) ProtoMessage()

func (*DnsQuery) Reset

func (m *DnsQuery) Reset()

func (*DnsQuery) String

func (m *DnsQuery) String() string

func (*DnsQuery) XXX_DiscardUnknown

func (m *DnsQuery) XXX_DiscardUnknown()

func (*DnsQuery) XXX_Marshal

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

func (*DnsQuery) XXX_Merge

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

func (*DnsQuery) XXX_Size

func (m *DnsQuery) XXX_Size() int

func (*DnsQuery) XXX_Unmarshal

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

type Empty

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

func (*Empty) Descriptor

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

func (*Empty) ProtoMessage

func (*Empty) ProtoMessage()

func (*Empty) Reset

func (m *Empty) Reset()

func (*Empty) String

func (m *Empty) String() string

func (*Empty) XXX_DiscardUnknown

func (m *Empty) XXX_DiscardUnknown()

func (*Empty) XXX_Marshal

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

func (*Empty) XXX_Merge

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

func (*Empty) XXX_Size

func (m *Empty) XXX_Size() int

func (*Empty) XXX_Unmarshal

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

type Esp

type Esp struct {
	Spi                  uint32   `protobuf:"varint,1,opt,name=spi,proto3" json:"spi,omitempty"`
	SequenceNumber       uint32   `protobuf:"varint,2,opt,name=sequence_number,json=sequenceNumber,proto3" json:"sequence_number,omitempty"`
	Payload              []byte   `protobuf:"bytes,3,opt,name=payload,proto3" json:"payload,omitempty"`
	PayloadLength        uint32   `protobuf:"varint,4,opt,name=payload_length,json=payloadLength,proto3" json:"payload_length,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Esp) Descriptor

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

func (*Esp) GetPayload

func (m *Esp) GetPayload() []byte

func (*Esp) GetPayloadLength

func (m *Esp) GetPayloadLength() uint32

func (*Esp) GetSequenceNumber

func (m *Esp) GetSequenceNumber() uint32

func (*Esp) GetSpi

func (m *Esp) GetSpi() uint32

func (*Esp) ProtoMessage

func (*Esp) ProtoMessage()

func (*Esp) Reset

func (m *Esp) Reset()

func (*Esp) String

func (m *Esp) String() string

func (*Esp) XXX_DiscardUnknown

func (m *Esp) XXX_DiscardUnknown()

func (*Esp) XXX_Marshal

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

func (*Esp) XXX_Merge

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

func (*Esp) XXX_Size

func (m *Esp) XXX_Size() int

func (*Esp) XXX_Unmarshal

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

type Event

type Event struct {
	Id      string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Device  string               `protobuf:"bytes,2,opt,name=device,proto3" json:"device,omitempty"`
	Network string               `protobuf:"bytes,3,opt,name=network,proto3" json:"network,omitempty"`
	Origin  Origin               `protobuf:"varint,4,opt,name=origin,proto3,enum=cyberprobe.Origin" json:"origin,omitempty"`
	Action  Action               `protobuf:"varint,5,opt,name=action,proto3,enum=cyberprobe.Action" json:"action,omitempty"`
	Url     string               `protobuf:"bytes,6,opt,name=url,proto3" json:"url,omitempty"`
	Src     []*ProtocolAddress   `protobuf:"bytes,7,rep,name=src,proto3" json:"src,omitempty"`
	Dest    []*ProtocolAddress   `protobuf:"bytes,8,rep,name=dest,proto3" json:"dest,omitempty"`
	Time    *timestamp.Timestamp `protobuf:"bytes,9,opt,name=time,proto3" json:"time,omitempty"`
	// Types that are valid to be assigned to Detail:
	//	*Event_DnsMessage
	//	*Event_UnrecognisedDatagram
	//	*Event_UnrecognisedStream
	//	*Event_Icmp
	//	*Event_HttpRequest
	//	*Event_HttpResponse
	//	*Event_SipRequest
	//	*Event_SipResponse
	//	*Event_SipSsl
	//	*Event_Imap
	//	*Event_ImapSsl
	//	*Event_Pop3
	//	*Event_Pop3Ssl
	//	*Event_NtpTimestamp
	//	*Event_NtpControl
	//	*Event_NtpPrivate
	//	*Event_FtpCommand
	//	*Event_FtpResponse
	//	*Event_SmtpCommand
	//	*Event_SmtpResponse
	//	*Event_SmtpData
	//	*Event_SmtpAuth
	//	*Event_Gre
	//	*Event_GrePptp
	//	*Event_Esp
	//	*Event_UnrecognisedIpProtocol
	//	*Event_Wlan
	//	*Event_TlsUnknown
	//	*Event_TlsClientHello
	//	*Event_TlsServerHello
	//	*Event_TlsCertificates
	//	*Event_TlsServerKeyExchange
	//	*Event_TlsServerHelloDone
	//	*Event_TlsHandshakeGeneric
	//	*Event_TlsCertificateRequest
	//	*Event_TlsClientKeyExchange
	//	*Event_TlsCertificateVerify
	//	*Event_TlsChangeCipherSpec
	//	*Event_TlsHandshakeFinished
	//	*Event_TlsHandshakeComplete
	//	*Event_TlsApplicationData
	//	*Event_Rtp
	//	*Event_RtpSsl
	//	*Event_TriggerUp
	//	*Event_TriggerDown
	//	*Event_ConnectionUp
	//	*Event_ConnectionDown
	Detail               isEvent_Detail `protobuf_oneof:"Detail"`
	Location             *Locations     `protobuf:"bytes,57,opt,name=location,proto3" json:"location,omitempty"`
	Indicators           []*Indicator   `protobuf:"bytes,58,rep,name=indicators,proto3" json:"indicators,omitempty"`
	Risk                 float32        `protobuf:"fixed32,59,opt,name=risk,proto3" json:"risk,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*Event) Descriptor

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

func (*Event) GetAction

func (m *Event) GetAction() Action

func (*Event) GetConnectionDown

func (m *Event) GetConnectionDown() *ConnectionDown

func (*Event) GetConnectionUp

func (m *Event) GetConnectionUp() *ConnectionUp

func (*Event) GetDest

func (m *Event) GetDest() []*ProtocolAddress

func (*Event) GetDetail

func (m *Event) GetDetail() isEvent_Detail

func (*Event) GetDevice

func (m *Event) GetDevice() string

func (*Event) GetDnsMessage

func (m *Event) GetDnsMessage() *DnsMessage

func (*Event) GetEsp

func (m *Event) GetEsp() *Esp

func (*Event) GetFtpCommand

func (m *Event) GetFtpCommand() *FtpCommand

func (*Event) GetFtpResponse

func (m *Event) GetFtpResponse() *FtpResponse

func (*Event) GetGre

func (m *Event) GetGre() *Gre

func (*Event) GetGrePptp

func (m *Event) GetGrePptp() *GrePptp

func (*Event) GetHttpRequest

func (m *Event) GetHttpRequest() *HttpRequest

func (*Event) GetHttpResponse

func (m *Event) GetHttpResponse() *HttpResponse

func (*Event) GetIcmp

func (m *Event) GetIcmp() *Icmp

func (*Event) GetId

func (m *Event) GetId() string

func (*Event) GetImap

func (m *Event) GetImap() *Imap

func (*Event) GetImapSsl

func (m *Event) GetImapSsl() *ImapSsl

func (*Event) GetIndicators

func (m *Event) GetIndicators() []*Indicator

func (*Event) GetLocation

func (m *Event) GetLocation() *Locations

func (*Event) GetNetwork

func (m *Event) GetNetwork() string

func (*Event) GetNtpControl

func (m *Event) GetNtpControl() *Ntp

func (*Event) GetNtpPrivate

func (m *Event) GetNtpPrivate() *Ntp

func (*Event) GetNtpTimestamp

func (m *Event) GetNtpTimestamp() *Ntp

func (*Event) GetOrigin

func (m *Event) GetOrigin() Origin

func (*Event) GetPop3

func (m *Event) GetPop3() *Pop3

func (*Event) GetPop3Ssl

func (m *Event) GetPop3Ssl() *Pop3Ssl

func (*Event) GetRisk

func (m *Event) GetRisk() float32

func (*Event) GetRtp

func (m *Event) GetRtp() *Rtp

func (*Event) GetRtpSsl

func (m *Event) GetRtpSsl() *RtpSsl

func (*Event) GetSipRequest

func (m *Event) GetSipRequest() *SipRequest

func (*Event) GetSipResponse

func (m *Event) GetSipResponse() *SipResponse

func (*Event) GetSipSsl

func (m *Event) GetSipSsl() *SipSsl

func (*Event) GetSmtpAuth

func (m *Event) GetSmtpAuth() *SmtpAuth

func (*Event) GetSmtpCommand

func (m *Event) GetSmtpCommand() *SmtpCommand

func (*Event) GetSmtpData

func (m *Event) GetSmtpData() *SmtpData

func (*Event) GetSmtpResponse

func (m *Event) GetSmtpResponse() *SmtpResponse

func (*Event) GetSrc

func (m *Event) GetSrc() []*ProtocolAddress

func (*Event) GetTime

func (m *Event) GetTime() *timestamp.Timestamp

func (*Event) GetTlsApplicationData

func (m *Event) GetTlsApplicationData() *TlsApplicationData

func (*Event) GetTlsCertificateRequest

func (m *Event) GetTlsCertificateRequest() *TlsCertificateRequest

func (*Event) GetTlsCertificateVerify

func (m *Event) GetTlsCertificateVerify() *TlsCertificateVerify

func (*Event) GetTlsCertificates

func (m *Event) GetTlsCertificates() *TlsCertificates

func (*Event) GetTlsChangeCipherSpec

func (m *Event) GetTlsChangeCipherSpec() *TlsChangeCipherSpec

func (*Event) GetTlsClientHello

func (m *Event) GetTlsClientHello() *TlsClientHello

func (*Event) GetTlsClientKeyExchange

func (m *Event) GetTlsClientKeyExchange() *TlsClientKeyExchange

func (*Event) GetTlsHandshakeComplete

func (m *Event) GetTlsHandshakeComplete() *TlsHandshakeComplete

func (*Event) GetTlsHandshakeFinished

func (m *Event) GetTlsHandshakeFinished() *TlsHandshakeFinished

func (*Event) GetTlsHandshakeGeneric

func (m *Event) GetTlsHandshakeGeneric() *TlsHandshakeGeneric

func (*Event) GetTlsServerHello

func (m *Event) GetTlsServerHello() *TlsServerHello

func (*Event) GetTlsServerHelloDone

func (m *Event) GetTlsServerHelloDone() *TlsServerHelloDone

func (*Event) GetTlsServerKeyExchange

func (m *Event) GetTlsServerKeyExchange() *TlsServerKeyExchange

func (*Event) GetTlsUnknown

func (m *Event) GetTlsUnknown() *TlsUnknown

func (*Event) GetTriggerDown

func (m *Event) GetTriggerDown() *TriggerDown

func (*Event) GetTriggerUp

func (m *Event) GetTriggerUp() *TriggerUp

func (*Event) GetUnrecognisedDatagram

func (m *Event) GetUnrecognisedDatagram() *UnrecognisedDatagram

func (*Event) GetUnrecognisedIpProtocol

func (m *Event) GetUnrecognisedIpProtocol() *UnrecognisedIpProtocol

func (*Event) GetUnrecognisedStream

func (m *Event) GetUnrecognisedStream() *UnrecognisedStream

func (*Event) GetUrl

func (m *Event) GetUrl() string

func (*Event) GetWlan

func (m *Event) GetWlan() *Wlan

func (*Event) ProtoMessage

func (*Event) ProtoMessage()

func (*Event) Reset

func (m *Event) Reset()

func (*Event) String

func (m *Event) String() string

func (*Event) XXX_DiscardUnknown

func (m *Event) XXX_DiscardUnknown()

func (*Event) XXX_Marshal

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

func (*Event) XXX_Merge

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

func (*Event) XXX_OneofWrappers

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

XXX_OneofWrappers is for the internal use of the proto package.

func (*Event) XXX_Size

func (m *Event) XXX_Size() int

func (*Event) XXX_Unmarshal

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

type EventStreamClient

type EventStreamClient interface {
	Observe(ctx context.Context, in *Event, opts ...grpc.CallOption) (*Empty, error)
}

EventStreamClient is the client API for EventStream service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

type EventStreamServer

type EventStreamServer interface {
	Observe(context.Context, *Event) (*Empty, error)
}

EventStreamServer is the server API for EventStream service.

type Event_ConnectionDown

type Event_ConnectionDown struct {
	ConnectionDown *ConnectionDown `protobuf:"bytes,56,opt,name=connection_down,json=connectionDown,proto3,oneof"`
}

type Event_ConnectionUp

type Event_ConnectionUp struct {
	ConnectionUp *ConnectionUp `protobuf:"bytes,55,opt,name=connection_up,json=connectionUp,proto3,oneof"`
}

type Event_DnsMessage

type Event_DnsMessage struct {
	DnsMessage *DnsMessage `protobuf:"bytes,10,opt,name=dns_message,json=dnsMessage,proto3,oneof"`
}

type Event_Esp

type Event_Esp struct {
	Esp *Esp `protobuf:"bytes,34,opt,name=esp,proto3,oneof"`
}

type Event_FtpCommand

type Event_FtpCommand struct {
	FtpCommand *FtpCommand `protobuf:"bytes,26,opt,name=ftp_command,json=ftpCommand,proto3,oneof"`
}

type Event_FtpResponse

type Event_FtpResponse struct {
	FtpResponse *FtpResponse `protobuf:"bytes,27,opt,name=ftp_response,json=ftpResponse,proto3,oneof"`
}

type Event_Gre

type Event_Gre struct {
	Gre *Gre `protobuf:"bytes,32,opt,name=gre,proto3,oneof"`
}

type Event_GrePptp

type Event_GrePptp struct {
	GrePptp *GrePptp `protobuf:"bytes,33,opt,name=gre_pptp,json=grePptp,proto3,oneof"`
}

type Event_HttpRequest

type Event_HttpRequest struct {
	HttpRequest *HttpRequest `protobuf:"bytes,14,opt,name=http_request,json=httpRequest,proto3,oneof"`
}

type Event_HttpResponse

type Event_HttpResponse struct {
	HttpResponse *HttpResponse `protobuf:"bytes,15,opt,name=http_response,json=httpResponse,proto3,oneof"`
}

type Event_Icmp

type Event_Icmp struct {
	Icmp *Icmp `protobuf:"bytes,13,opt,name=icmp,proto3,oneof"`
}

type Event_Imap

type Event_Imap struct {
	Imap *Imap `protobuf:"bytes,19,opt,name=imap,proto3,oneof"`
}

type Event_ImapSsl

type Event_ImapSsl struct {
	ImapSsl *ImapSsl `protobuf:"bytes,20,opt,name=imap_ssl,json=imapSsl,proto3,oneof"`
}

type Event_NtpControl

type Event_NtpControl struct {
	NtpControl *Ntp `protobuf:"bytes,24,opt,name=ntp_control,json=ntpControl,proto3,oneof"`
}

type Event_NtpPrivate

type Event_NtpPrivate struct {
	NtpPrivate *Ntp `protobuf:"bytes,25,opt,name=ntp_private,json=ntpPrivate,proto3,oneof"`
}

type Event_NtpTimestamp

type Event_NtpTimestamp struct {
	NtpTimestamp *Ntp `protobuf:"bytes,23,opt,name=ntp_timestamp,json=ntpTimestamp,proto3,oneof"`
}

type Event_Pop3

type Event_Pop3 struct {
	Pop3 *Pop3 `protobuf:"bytes,21,opt,name=pop3,proto3,oneof"`
}

type Event_Pop3Ssl

type Event_Pop3Ssl struct {
	Pop3Ssl *Pop3Ssl `protobuf:"bytes,22,opt,name=pop3_ssl,json=pop3Ssl,proto3,oneof"`
}

type Event_Rtp

type Event_Rtp struct {
	Rtp *Rtp `protobuf:"bytes,51,opt,name=rtp,proto3,oneof"`
}

type Event_RtpSsl

type Event_RtpSsl struct {
	RtpSsl *RtpSsl `protobuf:"bytes,52,opt,name=rtp_ssl,json=rtpSsl,proto3,oneof"`
}

type Event_SipRequest

type Event_SipRequest struct {
	SipRequest *SipRequest `protobuf:"bytes,16,opt,name=sip_request,json=sipRequest,proto3,oneof"`
}

type Event_SipResponse

type Event_SipResponse struct {
	SipResponse *SipResponse `protobuf:"bytes,17,opt,name=sip_response,json=sipResponse,proto3,oneof"`
}

type Event_SipSsl

type Event_SipSsl struct {
	SipSsl *SipSsl `protobuf:"bytes,18,opt,name=sip_ssl,json=sipSsl,proto3,oneof"`
}

type Event_SmtpAuth

type Event_SmtpAuth struct {
	SmtpAuth *SmtpAuth `protobuf:"bytes,31,opt,name=smtp_auth,json=smtpAuth,proto3,oneof"`
}

type Event_SmtpCommand

type Event_SmtpCommand struct {
	SmtpCommand *SmtpCommand `protobuf:"bytes,28,opt,name=smtp_command,json=smtpCommand,proto3,oneof"`
}

type Event_SmtpData

type Event_SmtpData struct {
	SmtpData *SmtpData `protobuf:"bytes,30,opt,name=smtp_data,json=smtpData,proto3,oneof"`
}

type Event_SmtpResponse

type Event_SmtpResponse struct {
	SmtpResponse *SmtpResponse `protobuf:"bytes,29,opt,name=smtp_response,json=smtpResponse,proto3,oneof"`
}

type Event_TlsApplicationData

type Event_TlsApplicationData struct {
	TlsApplicationData *TlsApplicationData `protobuf:"bytes,50,opt,name=tls_application_data,json=tlsApplicationData,proto3,oneof"`
}

type Event_TlsCertificateRequest

type Event_TlsCertificateRequest struct {
	TlsCertificateRequest *TlsCertificateRequest `protobuf:"bytes,44,opt,name=tls_certificate_request,json=tlsCertificateRequest,proto3,oneof"`
}

type Event_TlsCertificateVerify

type Event_TlsCertificateVerify struct {
	TlsCertificateVerify *TlsCertificateVerify `protobuf:"bytes,46,opt,name=tls_certificate_verify,json=tlsCertificateVerify,proto3,oneof"`
}

type Event_TlsCertificates

type Event_TlsCertificates struct {
	TlsCertificates *TlsCertificates `protobuf:"bytes,40,opt,name=tls_certificates,json=tlsCertificates,proto3,oneof"`
}

type Event_TlsChangeCipherSpec

type Event_TlsChangeCipherSpec struct {
	TlsChangeCipherSpec *TlsChangeCipherSpec `protobuf:"bytes,47,opt,name=tls_change_cipher_spec,json=tlsChangeCipherSpec,proto3,oneof"`
}

type Event_TlsClientHello

type Event_TlsClientHello struct {
	TlsClientHello *TlsClientHello `protobuf:"bytes,38,opt,name=tls_client_hello,json=tlsClientHello,proto3,oneof"`
}

type Event_TlsClientKeyExchange

type Event_TlsClientKeyExchange struct {
	TlsClientKeyExchange *TlsClientKeyExchange `protobuf:"bytes,45,opt,name=tls_client_key_exchange,json=tlsClientKeyExchange,proto3,oneof"`
}

type Event_TlsHandshakeComplete

type Event_TlsHandshakeComplete struct {
	TlsHandshakeComplete *TlsHandshakeComplete `protobuf:"bytes,49,opt,name=tls_handshake_complete,json=tlsHandshakeComplete,proto3,oneof"`
}

type Event_TlsHandshakeFinished

type Event_TlsHandshakeFinished struct {
	TlsHandshakeFinished *TlsHandshakeFinished `protobuf:"bytes,48,opt,name=tls_handshake_finished,json=tlsHandshakeFinished,proto3,oneof"`
}

type Event_TlsHandshakeGeneric

type Event_TlsHandshakeGeneric struct {
	TlsHandshakeGeneric *TlsHandshakeGeneric `protobuf:"bytes,43,opt,name=tls_handshake_generic,json=tlsHandshakeGeneric,proto3,oneof"`
}

type Event_TlsServerHello

type Event_TlsServerHello struct {
	TlsServerHello *TlsServerHello `protobuf:"bytes,39,opt,name=tls_server_hello,json=tlsServerHello,proto3,oneof"`
}

type Event_TlsServerHelloDone

type Event_TlsServerHelloDone struct {
	TlsServerHelloDone *TlsServerHelloDone `protobuf:"bytes,42,opt,name=tls_server_hello_done,json=tlsServerHelloDone,proto3,oneof"`
}

type Event_TlsServerKeyExchange

type Event_TlsServerKeyExchange struct {
	TlsServerKeyExchange *TlsServerKeyExchange `protobuf:"bytes,41,opt,name=tls_server_key_exchange,json=tlsServerKeyExchange,proto3,oneof"`
}

type Event_TlsUnknown

type Event_TlsUnknown struct {
	TlsUnknown *TlsUnknown `protobuf:"bytes,37,opt,name=tls_unknown,json=tlsUnknown,proto3,oneof"`
}

type Event_TriggerDown

type Event_TriggerDown struct {
	TriggerDown *TriggerDown `protobuf:"bytes,54,opt,name=trigger_down,json=triggerDown,proto3,oneof"`
}

type Event_TriggerUp

type Event_TriggerUp struct {
	TriggerUp *TriggerUp `protobuf:"bytes,53,opt,name=trigger_up,json=triggerUp,proto3,oneof"`
}

type Event_UnrecognisedDatagram

type Event_UnrecognisedDatagram struct {
	UnrecognisedDatagram *UnrecognisedDatagram `protobuf:"bytes,11,opt,name=unrecognised_datagram,json=unrecognisedDatagram,proto3,oneof"`
}

type Event_UnrecognisedIpProtocol

type Event_UnrecognisedIpProtocol struct {
	UnrecognisedIpProtocol *UnrecognisedIpProtocol `protobuf:"bytes,35,opt,name=unrecognised_ip_protocol,json=unrecognisedIpProtocol,proto3,oneof"`
}

type Event_UnrecognisedStream

type Event_UnrecognisedStream struct {
	UnrecognisedStream *UnrecognisedStream `protobuf:"bytes,12,opt,name=unrecognised_stream,json=unrecognisedStream,proto3,oneof"`
}

type Event_Wlan

type Event_Wlan struct {
	Wlan *Wlan `protobuf:"bytes,36,opt,name=wlan,proto3,oneof"`
}

type FtpCommand

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

func (*FtpCommand) Descriptor

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

func (*FtpCommand) GetCommand

func (m *FtpCommand) GetCommand() string

func (*FtpCommand) ProtoMessage

func (*FtpCommand) ProtoMessage()

func (*FtpCommand) Reset

func (m *FtpCommand) Reset()

func (*FtpCommand) String

func (m *FtpCommand) String() string

func (*FtpCommand) XXX_DiscardUnknown

func (m *FtpCommand) XXX_DiscardUnknown()

func (*FtpCommand) XXX_Marshal

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

func (*FtpCommand) XXX_Merge

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

func (*FtpCommand) XXX_Size

func (m *FtpCommand) XXX_Size() int

func (*FtpCommand) XXX_Unmarshal

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

type FtpResponse

type FtpResponse struct {
	Status               int32    `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
	Text                 []string `protobuf:"bytes,2,rep,name=text,proto3" json:"text,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*FtpResponse) Descriptor

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

func (*FtpResponse) GetStatus

func (m *FtpResponse) GetStatus() int32

func (*FtpResponse) GetText

func (m *FtpResponse) GetText() []string

func (*FtpResponse) ProtoMessage

func (*FtpResponse) ProtoMessage()

func (*FtpResponse) Reset

func (m *FtpResponse) Reset()

func (*FtpResponse) String

func (m *FtpResponse) String() string

func (*FtpResponse) XXX_DiscardUnknown

func (m *FtpResponse) XXX_DiscardUnknown()

func (*FtpResponse) XXX_Marshal

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

func (*FtpResponse) XXX_Merge

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

func (*FtpResponse) XXX_Size

func (m *FtpResponse) XXX_Size() int

func (*FtpResponse) XXX_Unmarshal

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

type Gre

type Gre struct {
	NextProto            string   `protobuf:"bytes,1,opt,name=next_proto,json=nextProto,proto3" json:"next_proto,omitempty"`
	Key                  uint32   `protobuf:"varint,2,opt,name=key,proto3" json:"key,omitempty"`
	SequenceNumber       uint32   `protobuf:"varint,3,opt,name=sequence_number,json=sequenceNumber,proto3" json:"sequence_number,omitempty"`
	Payload              []byte   `protobuf:"bytes,4,opt,name=payload,proto3" json:"payload,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Gre) Descriptor

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

func (*Gre) GetKey

func (m *Gre) GetKey() uint32

func (*Gre) GetNextProto

func (m *Gre) GetNextProto() string

func (*Gre) GetPayload

func (m *Gre) GetPayload() []byte

func (*Gre) GetSequenceNumber

func (m *Gre) GetSequenceNumber() uint32

func (*Gre) ProtoMessage

func (*Gre) ProtoMessage()

func (*Gre) Reset

func (m *Gre) Reset()

func (*Gre) String

func (m *Gre) String() string

func (*Gre) XXX_DiscardUnknown

func (m *Gre) XXX_DiscardUnknown()

func (*Gre) XXX_Marshal

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

func (*Gre) XXX_Merge

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

func (*Gre) XXX_Size

func (m *Gre) XXX_Size() int

func (*Gre) XXX_Unmarshal

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

type GrePptp

type GrePptp struct {
	NextProto             string   `protobuf:"bytes,1,opt,name=next_proto,json=nextProto,proto3" json:"next_proto,omitempty"`
	CallId                uint32   `protobuf:"varint,2,opt,name=call_id,json=callId,proto3" json:"call_id,omitempty"`
	SequenceNumber        uint32   `protobuf:"varint,3,opt,name=sequence_number,json=sequenceNumber,proto3" json:"sequence_number,omitempty"`
	AcknowledgementNumber uint32   `protobuf:"varint,4,opt,name=acknowledgement_number,json=acknowledgementNumber,proto3" json:"acknowledgement_number,omitempty"`
	Payload               []byte   `protobuf:"bytes,5,opt,name=payload,proto3" json:"payload,omitempty"`
	PayloadLength         uint32   `protobuf:"varint,6,opt,name=payload_length,json=payloadLength,proto3" json:"payload_length,omitempty"`
	XXX_NoUnkeyedLiteral  struct{} `json:"-"`
	XXX_unrecognized      []byte   `json:"-"`
	XXX_sizecache         int32    `json:"-"`
}

func (*GrePptp) Descriptor

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

func (*GrePptp) GetAcknowledgementNumber

func (m *GrePptp) GetAcknowledgementNumber() uint32

func (*GrePptp) GetCallId

func (m *GrePptp) GetCallId() uint32

func (*GrePptp) GetNextProto

func (m *GrePptp) GetNextProto() string

func (*GrePptp) GetPayload

func (m *GrePptp) GetPayload() []byte

func (*GrePptp) GetPayloadLength

func (m *GrePptp) GetPayloadLength() uint32

func (*GrePptp) GetSequenceNumber

func (m *GrePptp) GetSequenceNumber() uint32

func (*GrePptp) ProtoMessage

func (*GrePptp) ProtoMessage()

func (*GrePptp) Reset

func (m *GrePptp) Reset()

func (*GrePptp) String

func (m *GrePptp) String() string

func (*GrePptp) XXX_DiscardUnknown

func (m *GrePptp) XXX_DiscardUnknown()

func (*GrePptp) XXX_Marshal

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

func (*GrePptp) XXX_Merge

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

func (*GrePptp) XXX_Size

func (m *GrePptp) XXX_Size() int

func (*GrePptp) XXX_Unmarshal

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

type HttpRequest

type HttpRequest struct {
	Method               string            `protobuf:"bytes,1,opt,name=method,proto3" json:"method,omitempty"`
	Header               map[string]string `` /* 153-byte string literal not displayed */
	Body                 []byte            `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*HttpRequest) Descriptor

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

func (*HttpRequest) GetBody

func (m *HttpRequest) GetBody() []byte

func (*HttpRequest) GetHeader

func (m *HttpRequest) GetHeader() map[string]string

func (*HttpRequest) GetMethod

func (m *HttpRequest) GetMethod() string

func (*HttpRequest) ProtoMessage

func (*HttpRequest) ProtoMessage()

func (*HttpRequest) Reset

func (m *HttpRequest) Reset()

func (*HttpRequest) String

func (m *HttpRequest) String() string

func (*HttpRequest) XXX_DiscardUnknown

func (m *HttpRequest) XXX_DiscardUnknown()

func (*HttpRequest) XXX_Marshal

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

func (*HttpRequest) XXX_Merge

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

func (*HttpRequest) XXX_Size

func (m *HttpRequest) XXX_Size() int

func (*HttpRequest) XXX_Unmarshal

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

type HttpResponse

type HttpResponse struct {
	Code                 int32             `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Status               string            `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	Header               map[string]string `` /* 153-byte string literal not displayed */
	Body                 []byte            `protobuf:"bytes,4,opt,name=body,proto3" json:"body,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*HttpResponse) Descriptor

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

func (*HttpResponse) GetBody

func (m *HttpResponse) GetBody() []byte

func (*HttpResponse) GetCode

func (m *HttpResponse) GetCode() int32

func (*HttpResponse) GetHeader

func (m *HttpResponse) GetHeader() map[string]string

func (*HttpResponse) GetStatus

func (m *HttpResponse) GetStatus() string

func (*HttpResponse) ProtoMessage

func (*HttpResponse) ProtoMessage()

func (*HttpResponse) Reset

func (m *HttpResponse) Reset()

func (*HttpResponse) String

func (m *HttpResponse) String() string

func (*HttpResponse) XXX_DiscardUnknown

func (m *HttpResponse) XXX_DiscardUnknown()

func (*HttpResponse) XXX_Marshal

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

func (*HttpResponse) XXX_Merge

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

func (*HttpResponse) XXX_Size

func (m *HttpResponse) XXX_Size() int

func (*HttpResponse) XXX_Unmarshal

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

type Icmp

type Icmp struct {
	Type                 int32    `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
	Code                 int32    `protobuf:"varint,2,opt,name=code,proto3" json:"code,omitempty"`
	Payload              []byte   `protobuf:"bytes,3,opt,name=payload,proto3" json:"payload,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Icmp) Descriptor

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

func (*Icmp) GetCode

func (m *Icmp) GetCode() int32

func (*Icmp) GetPayload

func (m *Icmp) GetPayload() []byte

func (*Icmp) GetType

func (m *Icmp) GetType() int32

func (*Icmp) ProtoMessage

func (*Icmp) ProtoMessage()

func (*Icmp) Reset

func (m *Icmp) Reset()

func (*Icmp) String

func (m *Icmp) String() string

func (*Icmp) XXX_DiscardUnknown

func (m *Icmp) XXX_DiscardUnknown()

func (*Icmp) XXX_Marshal

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

func (*Icmp) XXX_Merge

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

func (*Icmp) XXX_Size

func (m *Icmp) XXX_Size() int

func (*Icmp) XXX_Unmarshal

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

type Imap

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

func (*Imap) Descriptor

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

func (*Imap) GetPayload

func (m *Imap) GetPayload() []byte

func (*Imap) ProtoMessage

func (*Imap) ProtoMessage()

func (*Imap) Reset

func (m *Imap) Reset()

func (*Imap) String

func (m *Imap) String() string

func (*Imap) XXX_DiscardUnknown

func (m *Imap) XXX_DiscardUnknown()

func (*Imap) XXX_Marshal

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

func (*Imap) XXX_Merge

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

func (*Imap) XXX_Size

func (m *Imap) XXX_Size() int

func (*Imap) XXX_Unmarshal

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

type ImapSsl

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

func (*ImapSsl) Descriptor

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

func (*ImapSsl) GetPayload

func (m *ImapSsl) GetPayload() []byte

func (*ImapSsl) ProtoMessage

func (*ImapSsl) ProtoMessage()

func (*ImapSsl) Reset

func (m *ImapSsl) Reset()

func (*ImapSsl) String

func (m *ImapSsl) String() string

func (*ImapSsl) XXX_DiscardUnknown

func (m *ImapSsl) XXX_DiscardUnknown()

func (*ImapSsl) XXX_Marshal

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

func (*ImapSsl) XXX_Merge

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

func (*ImapSsl) XXX_Size

func (m *ImapSsl) XXX_Size() int

func (*ImapSsl) XXX_Unmarshal

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

type Indicator

type Indicator struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Type                 string   `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Value                string   `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	Category             string   `protobuf:"bytes,4,opt,name=category,proto3" json:"category,omitempty"`
	Source               string   `protobuf:"bytes,5,opt,name=source,proto3" json:"source,omitempty"`
	Author               string   `protobuf:"bytes,6,opt,name=author,proto3" json:"author,omitempty"`
	Description          string   `protobuf:"bytes,7,opt,name=description,proto3" json:"description,omitempty"`
	Probability          float32  `protobuf:"fixed32,8,opt,name=probability,proto3" json:"probability,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Indicator) Descriptor

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

func (*Indicator) GetAuthor

func (m *Indicator) GetAuthor() string

func (*Indicator) GetCategory

func (m *Indicator) GetCategory() string

func (*Indicator) GetDescription

func (m *Indicator) GetDescription() string

func (*Indicator) GetId

func (m *Indicator) GetId() string

func (*Indicator) GetProbability

func (m *Indicator) GetProbability() float32

func (*Indicator) GetSource

func (m *Indicator) GetSource() string

func (*Indicator) GetType

func (m *Indicator) GetType() string

func (*Indicator) GetValue

func (m *Indicator) GetValue() string

func (*Indicator) ProtoMessage

func (*Indicator) ProtoMessage()

func (*Indicator) Reset

func (m *Indicator) Reset()

func (*Indicator) String

func (m *Indicator) String() string

func (*Indicator) XXX_DiscardUnknown

func (m *Indicator) XXX_DiscardUnknown()

func (*Indicator) XXX_Marshal

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

func (*Indicator) XXX_Merge

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

func (*Indicator) XXX_Size

func (m *Indicator) XXX_Size() int

func (*Indicator) XXX_Unmarshal

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

type Locations

type Locations struct {
	Src                  *Locations_Location `protobuf:"bytes,1,opt,name=src,proto3" json:"src,omitempty"`
	Dest                 *Locations_Location `protobuf:"bytes,2,opt,name=dest,proto3" json:"dest,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*Locations) Descriptor

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

func (*Locations) GetDest

func (m *Locations) GetDest() *Locations_Location

func (*Locations) GetSrc

func (m *Locations) GetSrc() *Locations_Location

func (*Locations) ProtoMessage

func (*Locations) ProtoMessage()

func (*Locations) Reset

func (m *Locations) Reset()

func (*Locations) String

func (m *Locations) String() string

func (*Locations) XXX_DiscardUnknown

func (m *Locations) XXX_DiscardUnknown()

func (*Locations) XXX_Marshal

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

func (*Locations) XXX_Merge

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

func (*Locations) XXX_Size

func (m *Locations) XXX_Size() int

func (*Locations) XXX_Unmarshal

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

type Locations_Location

type Locations_Location struct {
	City                 string   `protobuf:"bytes,1,opt,name=city,proto3" json:"city,omitempty"`
	Iso                  string   `protobuf:"bytes,2,opt,name=iso,proto3" json:"iso,omitempty"`
	Country              string   `protobuf:"bytes,3,opt,name=country,proto3" json:"country,omitempty"`
	Postcode             string   `protobuf:"bytes,4,opt,name=postcode,proto3" json:"postcode,omitempty"`
	Latitude             float32  `protobuf:"fixed32,5,opt,name=latitude,proto3" json:"latitude,omitempty"`
	Longitude            float32  `protobuf:"fixed32,6,opt,name=longitude,proto3" json:"longitude,omitempty"`
	Asnum                string   `protobuf:"bytes,7,opt,name=asnum,proto3" json:"asnum,omitempty"`
	Asorg                string   `protobuf:"bytes,8,opt,name=asorg,proto3" json:"asorg,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Locations_Location) Descriptor

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

func (*Locations_Location) GetAsnum

func (m *Locations_Location) GetAsnum() string

func (*Locations_Location) GetAsorg

func (m *Locations_Location) GetAsorg() string

func (*Locations_Location) GetCity

func (m *Locations_Location) GetCity() string

func (*Locations_Location) GetCountry

func (m *Locations_Location) GetCountry() string

func (*Locations_Location) GetIso

func (m *Locations_Location) GetIso() string

func (*Locations_Location) GetLatitude

func (m *Locations_Location) GetLatitude() float32

func (*Locations_Location) GetLongitude

func (m *Locations_Location) GetLongitude() float32

func (*Locations_Location) GetPostcode

func (m *Locations_Location) GetPostcode() string

func (*Locations_Location) ProtoMessage

func (*Locations_Location) ProtoMessage()

func (*Locations_Location) Reset

func (m *Locations_Location) Reset()

func (*Locations_Location) String

func (m *Locations_Location) String() string

func (*Locations_Location) XXX_DiscardUnknown

func (m *Locations_Location) XXX_DiscardUnknown()

func (*Locations_Location) XXX_Marshal

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

func (*Locations_Location) XXX_Merge

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

func (*Locations_Location) XXX_Size

func (m *Locations_Location) XXX_Size() int

func (*Locations_Location) XXX_Unmarshal

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

type Ntp

type Ntp struct {
	Version              int32    `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	Mode                 int32    `protobuf:"varint,2,opt,name=mode,proto3" json:"mode,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Ntp) Descriptor

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

func (*Ntp) GetMode

func (m *Ntp) GetMode() int32

func (*Ntp) GetVersion

func (m *Ntp) GetVersion() int32

func (*Ntp) ProtoMessage

func (*Ntp) ProtoMessage()

func (*Ntp) Reset

func (m *Ntp) Reset()

func (*Ntp) String

func (m *Ntp) String() string

func (*Ntp) XXX_DiscardUnknown

func (m *Ntp) XXX_DiscardUnknown()

func (*Ntp) XXX_Marshal

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

func (*Ntp) XXX_Merge

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

func (*Ntp) XXX_Size

func (m *Ntp) XXX_Size() int

func (*Ntp) XXX_Unmarshal

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

type Origin

type Origin int32
const (
	Origin_unspecified Origin = 0
	Origin_device      Origin = 1
	Origin_network     Origin = 2
)

func (Origin) EnumDescriptor

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

func (Origin) String

func (x Origin) String() string

type Pop3

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

func (*Pop3) Descriptor

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

func (*Pop3) GetPayload

func (m *Pop3) GetPayload() []byte

func (*Pop3) ProtoMessage

func (*Pop3) ProtoMessage()

func (*Pop3) Reset

func (m *Pop3) Reset()

func (*Pop3) String

func (m *Pop3) String() string

func (*Pop3) XXX_DiscardUnknown

func (m *Pop3) XXX_DiscardUnknown()

func (*Pop3) XXX_Marshal

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

func (*Pop3) XXX_Merge

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

func (*Pop3) XXX_Size

func (m *Pop3) XXX_Size() int

func (*Pop3) XXX_Unmarshal

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

type Pop3Ssl

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

func (*Pop3Ssl) Descriptor

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

func (*Pop3Ssl) GetPayload

func (m *Pop3Ssl) GetPayload() []byte

func (*Pop3Ssl) ProtoMessage

func (*Pop3Ssl) ProtoMessage()

func (*Pop3Ssl) Reset

func (m *Pop3Ssl) Reset()

func (*Pop3Ssl) String

func (m *Pop3Ssl) String() string

func (*Pop3Ssl) XXX_DiscardUnknown

func (m *Pop3Ssl) XXX_DiscardUnknown()

func (*Pop3Ssl) XXX_Marshal

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

func (*Pop3Ssl) XXX_Merge

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

func (*Pop3Ssl) XXX_Size

func (m *Pop3Ssl) XXX_Size() int

func (*Pop3Ssl) XXX_Unmarshal

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

type Protocol

type Protocol int32
const (
	Protocol_unknown      Protocol = 0
	Protocol_ipv4         Protocol = 1
	Protocol_ipv6         Protocol = 2
	Protocol_tcp          Protocol = 3
	Protocol_udp          Protocol = 4
	Protocol_icmp         Protocol = 5
	Protocol_http         Protocol = 6
	Protocol_dns          Protocol = 7
	Protocol_smtp         Protocol = 8
	Protocol_ftp          Protocol = 9
	Protocol_ntp          Protocol = 10
	Protocol_imap         Protocol = 11
	Protocol_imap_ssl     Protocol = 12
	Protocol_pop3         Protocol = 13
	Protocol_pop3_ssl     Protocol = 14
	Protocol_rtp          Protocol = 15
	Protocol_rtp_ssl      Protocol = 16
	Protocol_sip          Protocol = 17
	Protocol_sip_ssl      Protocol = 18
	Protocol_smtp_auth    Protocol = 19
	Protocol_gre          Protocol = 20
	Protocol_esp          Protocol = 21
	Protocol_wlan         Protocol = 22
	Protocol_tls          Protocol = 23
	Protocol_unrecognised Protocol = 24
)

func (Protocol) EnumDescriptor

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

func (Protocol) String

func (x Protocol) String() string

type ProtocolAddress

type ProtocolAddress struct {
	Protocol             Protocol `protobuf:"varint,1,opt,name=protocol,proto3,enum=cyberprobe.Protocol" json:"protocol,omitempty"`
	Address              *Address `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ProtocolAddress) Descriptor

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

func (*ProtocolAddress) GetAddress

func (m *ProtocolAddress) GetAddress() *Address

func (*ProtocolAddress) GetProtocol

func (m *ProtocolAddress) GetProtocol() Protocol

func (*ProtocolAddress) ProtoMessage

func (*ProtocolAddress) ProtoMessage()

func (*ProtocolAddress) Reset

func (m *ProtocolAddress) Reset()

func (*ProtocolAddress) String

func (m *ProtocolAddress) String() string

func (*ProtocolAddress) XXX_DiscardUnknown

func (m *ProtocolAddress) XXX_DiscardUnknown()

func (*ProtocolAddress) XXX_Marshal

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

func (*ProtocolAddress) XXX_Merge

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

func (*ProtocolAddress) XXX_Size

func (m *ProtocolAddress) XXX_Size() int

func (*ProtocolAddress) XXX_Unmarshal

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

type Rtp

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

func (*Rtp) Descriptor

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

func (*Rtp) GetPayload

func (m *Rtp) GetPayload() []byte

func (*Rtp) ProtoMessage

func (*Rtp) ProtoMessage()

func (*Rtp) Reset

func (m *Rtp) Reset()

func (*Rtp) String

func (m *Rtp) String() string

func (*Rtp) XXX_DiscardUnknown

func (m *Rtp) XXX_DiscardUnknown()

func (*Rtp) XXX_Marshal

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

func (*Rtp) XXX_Merge

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

func (*Rtp) XXX_Size

func (m *Rtp) XXX_Size() int

func (*Rtp) XXX_Unmarshal

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

type RtpSsl

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

func (*RtpSsl) Descriptor

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

func (*RtpSsl) GetPayload

func (m *RtpSsl) GetPayload() []byte

func (*RtpSsl) ProtoMessage

func (*RtpSsl) ProtoMessage()

func (*RtpSsl) Reset

func (m *RtpSsl) Reset()

func (*RtpSsl) String

func (m *RtpSsl) String() string

func (*RtpSsl) XXX_DiscardUnknown

func (m *RtpSsl) XXX_DiscardUnknown()

func (*RtpSsl) XXX_Marshal

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

func (*RtpSsl) XXX_Merge

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

func (*RtpSsl) XXX_Size

func (m *RtpSsl) XXX_Size() int

func (*RtpSsl) XXX_Unmarshal

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

type SipRequest

type SipRequest struct {
	Method               string   `protobuf:"bytes,1,opt,name=method,proto3" json:"method,omitempty"`
	From                 string   `protobuf:"bytes,2,opt,name=from,proto3" json:"from,omitempty"`
	To                   string   `protobuf:"bytes,3,opt,name=to,proto3" json:"to,omitempty"`
	Payload              []byte   `protobuf:"bytes,4,opt,name=payload,proto3" json:"payload,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SipRequest) Descriptor

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

func (*SipRequest) GetFrom

func (m *SipRequest) GetFrom() string

func (*SipRequest) GetMethod

func (m *SipRequest) GetMethod() string

func (*SipRequest) GetPayload

func (m *SipRequest) GetPayload() []byte

func (*SipRequest) GetTo

func (m *SipRequest) GetTo() string

func (*SipRequest) ProtoMessage

func (*SipRequest) ProtoMessage()

func (*SipRequest) Reset

func (m *SipRequest) Reset()

func (*SipRequest) String

func (m *SipRequest) String() string

func (*SipRequest) XXX_DiscardUnknown

func (m *SipRequest) XXX_DiscardUnknown()

func (*SipRequest) XXX_Marshal

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

func (*SipRequest) XXX_Merge

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

func (*SipRequest) XXX_Size

func (m *SipRequest) XXX_Size() int

func (*SipRequest) XXX_Unmarshal

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

type SipResponse

type SipResponse struct {
	Code                 int32    `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Status               string   `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	From                 string   `protobuf:"bytes,3,opt,name=from,proto3" json:"from,omitempty"`
	To                   string   `protobuf:"bytes,4,opt,name=to,proto3" json:"to,omitempty"`
	Payload              []byte   `protobuf:"bytes,5,opt,name=payload,proto3" json:"payload,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SipResponse) Descriptor

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

func (*SipResponse) GetCode

func (m *SipResponse) GetCode() int32

func (*SipResponse) GetFrom

func (m *SipResponse) GetFrom() string

func (*SipResponse) GetPayload

func (m *SipResponse) GetPayload() []byte

func (*SipResponse) GetStatus

func (m *SipResponse) GetStatus() string

func (*SipResponse) GetTo

func (m *SipResponse) GetTo() string

func (*SipResponse) ProtoMessage

func (*SipResponse) ProtoMessage()

func (*SipResponse) Reset

func (m *SipResponse) Reset()

func (*SipResponse) String

func (m *SipResponse) String() string

func (*SipResponse) XXX_DiscardUnknown

func (m *SipResponse) XXX_DiscardUnknown()

func (*SipResponse) XXX_Marshal

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

func (*SipResponse) XXX_Merge

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

func (*SipResponse) XXX_Size

func (m *SipResponse) XXX_Size() int

func (*SipResponse) XXX_Unmarshal

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

type SipSsl

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

func (*SipSsl) Descriptor

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

func (*SipSsl) GetPayload

func (m *SipSsl) GetPayload() []byte

func (*SipSsl) ProtoMessage

func (*SipSsl) ProtoMessage()

func (*SipSsl) Reset

func (m *SipSsl) Reset()

func (*SipSsl) String

func (m *SipSsl) String() string

func (*SipSsl) XXX_DiscardUnknown

func (m *SipSsl) XXX_DiscardUnknown()

func (*SipSsl) XXX_Marshal

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

func (*SipSsl) XXX_Merge

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

func (*SipSsl) XXX_Size

func (m *SipSsl) XXX_Size() int

func (*SipSsl) XXX_Unmarshal

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

type SmtpAuth

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

func (*SmtpAuth) Descriptor

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

func (*SmtpAuth) GetPayload

func (m *SmtpAuth) GetPayload() []byte

func (*SmtpAuth) ProtoMessage

func (*SmtpAuth) ProtoMessage()

func (*SmtpAuth) Reset

func (m *SmtpAuth) Reset()

func (*SmtpAuth) String

func (m *SmtpAuth) String() string

func (*SmtpAuth) XXX_DiscardUnknown

func (m *SmtpAuth) XXX_DiscardUnknown()

func (*SmtpAuth) XXX_Marshal

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

func (*SmtpAuth) XXX_Merge

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

func (*SmtpAuth) XXX_Size

func (m *SmtpAuth) XXX_Size() int

func (*SmtpAuth) XXX_Unmarshal

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

type SmtpCommand

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

func (*SmtpCommand) Descriptor

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

func (*SmtpCommand) GetCommand

func (m *SmtpCommand) GetCommand() string

func (*SmtpCommand) ProtoMessage

func (*SmtpCommand) ProtoMessage()

func (*SmtpCommand) Reset

func (m *SmtpCommand) Reset()

func (*SmtpCommand) String

func (m *SmtpCommand) String() string

func (*SmtpCommand) XXX_DiscardUnknown

func (m *SmtpCommand) XXX_DiscardUnknown()

func (*SmtpCommand) XXX_Marshal

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

func (*SmtpCommand) XXX_Merge

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

func (*SmtpCommand) XXX_Size

func (m *SmtpCommand) XXX_Size() int

func (*SmtpCommand) XXX_Unmarshal

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

type SmtpData

type SmtpData struct {
	From                 string   `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
	To                   []string `protobuf:"bytes,2,rep,name=to,proto3" json:"to,omitempty"`
	Body                 []byte   `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SmtpData) Descriptor

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

func (*SmtpData) GetBody

func (m *SmtpData) GetBody() []byte

func (*SmtpData) GetFrom

func (m *SmtpData) GetFrom() string

func (*SmtpData) GetTo

func (m *SmtpData) GetTo() []string

func (*SmtpData) ProtoMessage

func (*SmtpData) ProtoMessage()

func (*SmtpData) Reset

func (m *SmtpData) Reset()

func (*SmtpData) String

func (m *SmtpData) String() string

func (*SmtpData) XXX_DiscardUnknown

func (m *SmtpData) XXX_DiscardUnknown()

func (*SmtpData) XXX_Marshal

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

func (*SmtpData) XXX_Merge

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

func (*SmtpData) XXX_Size

func (m *SmtpData) XXX_Size() int

func (*SmtpData) XXX_Unmarshal

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

type SmtpResponse

type SmtpResponse struct {
	Status               int32    `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
	Text                 []string `protobuf:"bytes,2,rep,name=text,proto3" json:"text,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SmtpResponse) Descriptor

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

func (*SmtpResponse) GetStatus

func (m *SmtpResponse) GetStatus() int32

func (*SmtpResponse) GetText

func (m *SmtpResponse) GetText() []string

func (*SmtpResponse) ProtoMessage

func (*SmtpResponse) ProtoMessage()

func (*SmtpResponse) Reset

func (m *SmtpResponse) Reset()

func (*SmtpResponse) String

func (m *SmtpResponse) String() string

func (*SmtpResponse) XXX_DiscardUnknown

func (m *SmtpResponse) XXX_DiscardUnknown()

func (*SmtpResponse) XXX_Marshal

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

func (*SmtpResponse) XXX_Merge

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

func (*SmtpResponse) XXX_Size

func (m *SmtpResponse) XXX_Size() int

func (*SmtpResponse) XXX_Unmarshal

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

type TlsApplicationData

type TlsApplicationData struct {
	Tls                  *TlsApplicationData_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*TlsApplicationData) Descriptor

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

func (*TlsApplicationData) GetTls

func (*TlsApplicationData) ProtoMessage

func (*TlsApplicationData) ProtoMessage()

func (*TlsApplicationData) Reset

func (m *TlsApplicationData) Reset()

func (*TlsApplicationData) String

func (m *TlsApplicationData) String() string

func (*TlsApplicationData) XXX_DiscardUnknown

func (m *TlsApplicationData) XXX_DiscardUnknown()

func (*TlsApplicationData) XXX_Marshal

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

func (*TlsApplicationData) XXX_Merge

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

func (*TlsApplicationData) XXX_Size

func (m *TlsApplicationData) XXX_Size() int

func (*TlsApplicationData) XXX_Unmarshal

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

type TlsApplicationData_Tls

type TlsApplicationData_Tls struct {
	Version              string   `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	Length               uint64   `protobuf:"varint,2,opt,name=length,proto3" json:"length,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TlsApplicationData_Tls) Descriptor

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

func (*TlsApplicationData_Tls) GetLength

func (m *TlsApplicationData_Tls) GetLength() uint64

func (*TlsApplicationData_Tls) GetVersion

func (m *TlsApplicationData_Tls) GetVersion() string

func (*TlsApplicationData_Tls) ProtoMessage

func (*TlsApplicationData_Tls) ProtoMessage()

func (*TlsApplicationData_Tls) Reset

func (m *TlsApplicationData_Tls) Reset()

func (*TlsApplicationData_Tls) String

func (m *TlsApplicationData_Tls) String() string

func (*TlsApplicationData_Tls) XXX_DiscardUnknown

func (m *TlsApplicationData_Tls) XXX_DiscardUnknown()

func (*TlsApplicationData_Tls) XXX_Marshal

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

func (*TlsApplicationData_Tls) XXX_Merge

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

func (*TlsApplicationData_Tls) XXX_Size

func (m *TlsApplicationData_Tls) XXX_Size() int

func (*TlsApplicationData_Tls) XXX_Unmarshal

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

type TlsCertificateRequest

type TlsCertificateRequest struct {
	Tls                  *TlsCertificateRequest_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*TlsCertificateRequest) Descriptor

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

func (*TlsCertificateRequest) GetTls

func (*TlsCertificateRequest) ProtoMessage

func (*TlsCertificateRequest) ProtoMessage()

func (*TlsCertificateRequest) Reset

func (m *TlsCertificateRequest) Reset()

func (*TlsCertificateRequest) String

func (m *TlsCertificateRequest) String() string

func (*TlsCertificateRequest) XXX_DiscardUnknown

func (m *TlsCertificateRequest) XXX_DiscardUnknown()

func (*TlsCertificateRequest) XXX_Marshal

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

func (*TlsCertificateRequest) XXX_Merge

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

func (*TlsCertificateRequest) XXX_Size

func (m *TlsCertificateRequest) XXX_Size() int

func (*TlsCertificateRequest) XXX_Unmarshal

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

type TlsCertificateRequest_Tls

type TlsCertificateRequest_Tls struct {
	CertificateType      []string                                        `protobuf:"bytes,1,rep,name=certificate_type,json=certificateType,proto3" json:"certificate_type,omitempty"`
	SignatureAlgorithm   []*TlsCertificateRequest_Tls_SignatureAlgorithm `protobuf:"bytes,2,rep,name=signature_algorithm,json=signatureAlgorithm,proto3" json:"signature_algorithm,omitempty"`
	DistinguishedNames   []byte                                          `protobuf:"bytes,3,opt,name=distinguished_names,json=distinguishedNames,proto3" json:"distinguished_names,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                                        `json:"-"`
	XXX_unrecognized     []byte                                          `json:"-"`
	XXX_sizecache        int32                                           `json:"-"`
}

func (*TlsCertificateRequest_Tls) Descriptor

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

func (*TlsCertificateRequest_Tls) GetCertificateType

func (m *TlsCertificateRequest_Tls) GetCertificateType() []string

func (*TlsCertificateRequest_Tls) GetDistinguishedNames

func (m *TlsCertificateRequest_Tls) GetDistinguishedNames() []byte

func (*TlsCertificateRequest_Tls) GetSignatureAlgorithm

func (*TlsCertificateRequest_Tls) ProtoMessage

func (*TlsCertificateRequest_Tls) ProtoMessage()

func (*TlsCertificateRequest_Tls) Reset

func (m *TlsCertificateRequest_Tls) Reset()

func (*TlsCertificateRequest_Tls) String

func (m *TlsCertificateRequest_Tls) String() string

func (*TlsCertificateRequest_Tls) XXX_DiscardUnknown

func (m *TlsCertificateRequest_Tls) XXX_DiscardUnknown()

func (*TlsCertificateRequest_Tls) XXX_Marshal

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

func (*TlsCertificateRequest_Tls) XXX_Merge

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

func (*TlsCertificateRequest_Tls) XXX_Size

func (m *TlsCertificateRequest_Tls) XXX_Size() int

func (*TlsCertificateRequest_Tls) XXX_Unmarshal

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

type TlsCertificateRequest_Tls_SignatureAlgorithm

type TlsCertificateRequest_Tls_SignatureAlgorithm struct {
	HashAlgorithm        uint32   `protobuf:"varint,1,opt,name=hash_algorithm,json=hashAlgorithm,proto3" json:"hash_algorithm,omitempty"`
	SignatureAlgorithm   uint32   `protobuf:"varint,2,opt,name=signature_algorithm,json=signatureAlgorithm,proto3" json:"signature_algorithm,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TlsCertificateRequest_Tls_SignatureAlgorithm) Descriptor

func (*TlsCertificateRequest_Tls_SignatureAlgorithm) GetHashAlgorithm

func (*TlsCertificateRequest_Tls_SignatureAlgorithm) GetSignatureAlgorithm

func (m *TlsCertificateRequest_Tls_SignatureAlgorithm) GetSignatureAlgorithm() uint32

func (*TlsCertificateRequest_Tls_SignatureAlgorithm) ProtoMessage

func (*TlsCertificateRequest_Tls_SignatureAlgorithm) Reset

func (*TlsCertificateRequest_Tls_SignatureAlgorithm) String

func (*TlsCertificateRequest_Tls_SignatureAlgorithm) XXX_DiscardUnknown

func (m *TlsCertificateRequest_Tls_SignatureAlgorithm) XXX_DiscardUnknown()

func (*TlsCertificateRequest_Tls_SignatureAlgorithm) XXX_Marshal

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

func (*TlsCertificateRequest_Tls_SignatureAlgorithm) XXX_Merge

func (*TlsCertificateRequest_Tls_SignatureAlgorithm) XXX_Size

func (*TlsCertificateRequest_Tls_SignatureAlgorithm) XXX_Unmarshal

type TlsCertificateVerify

type TlsCertificateVerify struct {
	Tls                  *TlsCertificateVerify_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*TlsCertificateVerify) Descriptor

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

func (*TlsCertificateVerify) GetTls

func (*TlsCertificateVerify) ProtoMessage

func (*TlsCertificateVerify) ProtoMessage()

func (*TlsCertificateVerify) Reset

func (m *TlsCertificateVerify) Reset()

func (*TlsCertificateVerify) String

func (m *TlsCertificateVerify) String() string

func (*TlsCertificateVerify) XXX_DiscardUnknown

func (m *TlsCertificateVerify) XXX_DiscardUnknown()

func (*TlsCertificateVerify) XXX_Marshal

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

func (*TlsCertificateVerify) XXX_Merge

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

func (*TlsCertificateVerify) XXX_Size

func (m *TlsCertificateVerify) XXX_Size() int

func (*TlsCertificateVerify) XXX_Unmarshal

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

type TlsCertificateVerify_Tls

type TlsCertificateVerify_Tls struct {
	SignatureAlgorithm   *TlsCertificateVerify_Tls_SignatureAlgorithm `protobuf:"bytes,2,opt,name=signature_algorithm,json=signatureAlgorithm,proto3" json:"signature_algorithm,omitempty"`
	Signature            []byte                                       `protobuf:"bytes,3,opt,name=signature,proto3" json:"signature,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                                     `json:"-"`
	XXX_unrecognized     []byte                                       `json:"-"`
	XXX_sizecache        int32                                        `json:"-"`
}

func (*TlsCertificateVerify_Tls) Descriptor

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

func (*TlsCertificateVerify_Tls) GetSignature

func (m *TlsCertificateVerify_Tls) GetSignature() []byte

func (*TlsCertificateVerify_Tls) GetSignatureAlgorithm

func (*TlsCertificateVerify_Tls) ProtoMessage

func (*TlsCertificateVerify_Tls) ProtoMessage()

func (*TlsCertificateVerify_Tls) Reset

func (m *TlsCertificateVerify_Tls) Reset()

func (*TlsCertificateVerify_Tls) String

func (m *TlsCertificateVerify_Tls) String() string

func (*TlsCertificateVerify_Tls) XXX_DiscardUnknown

func (m *TlsCertificateVerify_Tls) XXX_DiscardUnknown()

func (*TlsCertificateVerify_Tls) XXX_Marshal

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

func (*TlsCertificateVerify_Tls) XXX_Merge

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

func (*TlsCertificateVerify_Tls) XXX_Size

func (m *TlsCertificateVerify_Tls) XXX_Size() int

func (*TlsCertificateVerify_Tls) XXX_Unmarshal

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

type TlsCertificateVerify_Tls_SignatureAlgorithm

type TlsCertificateVerify_Tls_SignatureAlgorithm struct {
	HashAlgorithm        uint32   `protobuf:"varint,1,opt,name=hash_algorithm,json=hashAlgorithm,proto3" json:"hash_algorithm,omitempty"`
	SignatureAlgorithm   uint32   `protobuf:"varint,2,opt,name=signature_algorithm,json=signatureAlgorithm,proto3" json:"signature_algorithm,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TlsCertificateVerify_Tls_SignatureAlgorithm) Descriptor

func (*TlsCertificateVerify_Tls_SignatureAlgorithm) GetHashAlgorithm

func (*TlsCertificateVerify_Tls_SignatureAlgorithm) GetSignatureAlgorithm

func (m *TlsCertificateVerify_Tls_SignatureAlgorithm) GetSignatureAlgorithm() uint32

func (*TlsCertificateVerify_Tls_SignatureAlgorithm) ProtoMessage

func (*TlsCertificateVerify_Tls_SignatureAlgorithm) Reset

func (*TlsCertificateVerify_Tls_SignatureAlgorithm) String

func (*TlsCertificateVerify_Tls_SignatureAlgorithm) XXX_DiscardUnknown

func (m *TlsCertificateVerify_Tls_SignatureAlgorithm) XXX_DiscardUnknown()

func (*TlsCertificateVerify_Tls_SignatureAlgorithm) XXX_Marshal

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

func (*TlsCertificateVerify_Tls_SignatureAlgorithm) XXX_Merge

func (*TlsCertificateVerify_Tls_SignatureAlgorithm) XXX_Size

func (*TlsCertificateVerify_Tls_SignatureAlgorithm) XXX_Unmarshal

type TlsCertificates

type TlsCertificates struct {
	Tls                  *TlsCertificates_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*TlsCertificates) Descriptor

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

func (*TlsCertificates) GetTls

func (m *TlsCertificates) GetTls() *TlsCertificates_Tls

func (*TlsCertificates) ProtoMessage

func (*TlsCertificates) ProtoMessage()

func (*TlsCertificates) Reset

func (m *TlsCertificates) Reset()

func (*TlsCertificates) String

func (m *TlsCertificates) String() string

func (*TlsCertificates) XXX_DiscardUnknown

func (m *TlsCertificates) XXX_DiscardUnknown()

func (*TlsCertificates) XXX_Marshal

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

func (*TlsCertificates) XXX_Merge

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

func (*TlsCertificates) XXX_Size

func (m *TlsCertificates) XXX_Size() int

func (*TlsCertificates) XXX_Unmarshal

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

type TlsCertificates_Tls

type TlsCertificates_Tls struct {
	Certificate          [][]byte `protobuf:"bytes,1,rep,name=certificate,proto3" json:"certificate,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TlsCertificates_Tls) Descriptor

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

func (*TlsCertificates_Tls) GetCertificate

func (m *TlsCertificates_Tls) GetCertificate() [][]byte

func (*TlsCertificates_Tls) ProtoMessage

func (*TlsCertificates_Tls) ProtoMessage()

func (*TlsCertificates_Tls) Reset

func (m *TlsCertificates_Tls) Reset()

func (*TlsCertificates_Tls) String

func (m *TlsCertificates_Tls) String() string

func (*TlsCertificates_Tls) XXX_DiscardUnknown

func (m *TlsCertificates_Tls) XXX_DiscardUnknown()

func (*TlsCertificates_Tls) XXX_Marshal

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

func (*TlsCertificates_Tls) XXX_Merge

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

func (*TlsCertificates_Tls) XXX_Size

func (m *TlsCertificates_Tls) XXX_Size() int

func (*TlsCertificates_Tls) XXX_Unmarshal

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

type TlsChangeCipherSpec

type TlsChangeCipherSpec struct {
	Tls                  *TlsChangeCipherSpec_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

func (*TlsChangeCipherSpec) Descriptor

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

func (*TlsChangeCipherSpec) GetTls

func (*TlsChangeCipherSpec) ProtoMessage

func (*TlsChangeCipherSpec) ProtoMessage()

func (*TlsChangeCipherSpec) Reset

func (m *TlsChangeCipherSpec) Reset()

func (*TlsChangeCipherSpec) String

func (m *TlsChangeCipherSpec) String() string

func (*TlsChangeCipherSpec) XXX_DiscardUnknown

func (m *TlsChangeCipherSpec) XXX_DiscardUnknown()

func (*TlsChangeCipherSpec) XXX_Marshal

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

func (*TlsChangeCipherSpec) XXX_Merge

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

func (*TlsChangeCipherSpec) XXX_Size

func (m *TlsChangeCipherSpec) XXX_Size() int

func (*TlsChangeCipherSpec) XXX_Unmarshal

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

type TlsChangeCipherSpec_Tls

type TlsChangeCipherSpec_Tls struct {
	Value                uint32   `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TlsChangeCipherSpec_Tls) Descriptor

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

func (*TlsChangeCipherSpec_Tls) GetValue

func (m *TlsChangeCipherSpec_Tls) GetValue() uint32

func (*TlsChangeCipherSpec_Tls) ProtoMessage

func (*TlsChangeCipherSpec_Tls) ProtoMessage()

func (*TlsChangeCipherSpec_Tls) Reset

func (m *TlsChangeCipherSpec_Tls) Reset()

func (*TlsChangeCipherSpec_Tls) String

func (m *TlsChangeCipherSpec_Tls) String() string

func (*TlsChangeCipherSpec_Tls) XXX_DiscardUnknown

func (m *TlsChangeCipherSpec_Tls) XXX_DiscardUnknown()

func (*TlsChangeCipherSpec_Tls) XXX_Marshal

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

func (*TlsChangeCipherSpec_Tls) XXX_Merge

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

func (*TlsChangeCipherSpec_Tls) XXX_Size

func (m *TlsChangeCipherSpec_Tls) XXX_Size() int

func (*TlsChangeCipherSpec_Tls) XXX_Unmarshal

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

type TlsClientHello

type TlsClientHello struct {
	Tls                  *TlsClientHello_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*TlsClientHello) Descriptor

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

func (*TlsClientHello) GetTls

func (m *TlsClientHello) GetTls() *TlsClientHello_Tls

func (*TlsClientHello) ProtoMessage

func (*TlsClientHello) ProtoMessage()

func (*TlsClientHello) Reset

func (m *TlsClientHello) Reset()

func (*TlsClientHello) String

func (m *TlsClientHello) String() string

func (*TlsClientHello) XXX_DiscardUnknown

func (m *TlsClientHello) XXX_DiscardUnknown()

func (*TlsClientHello) XXX_Marshal

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

func (*TlsClientHello) XXX_Merge

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

func (*TlsClientHello) XXX_Size

func (m *TlsClientHello) XXX_Size() int

func (*TlsClientHello) XXX_Unmarshal

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

type TlsClientHello_Tls

type TlsClientHello_Tls struct {
	Version              string                          `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	SessionId            string                          `protobuf:"bytes,2,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
	Random               *TlsClientHello_Tls_Random      `protobuf:"bytes,3,opt,name=random,proto3" json:"random,omitempty"`
	CipherSuite          []string                        `protobuf:"bytes,4,rep,name=cipher_suite,json=cipherSuite,proto3" json:"cipher_suite,omitempty"`
	CompressionMethod    []string                        `protobuf:"bytes,5,rep,name=compression_method,json=compressionMethod,proto3" json:"compression_method,omitempty"`
	Extension            []*TlsClientHello_Tls_Extension `protobuf:"bytes,6,rep,name=extension,proto3" json:"extension,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                        `json:"-"`
	XXX_unrecognized     []byte                          `json:"-"`
	XXX_sizecache        int32                           `json:"-"`
}

func (*TlsClientHello_Tls) Descriptor

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

func (*TlsClientHello_Tls) GetCipherSuite

func (m *TlsClientHello_Tls) GetCipherSuite() []string

func (*TlsClientHello_Tls) GetCompressionMethod

func (m *TlsClientHello_Tls) GetCompressionMethod() []string

func (*TlsClientHello_Tls) GetExtension

func (m *TlsClientHello_Tls) GetExtension() []*TlsClientHello_Tls_Extension

func (*TlsClientHello_Tls) GetRandom

func (*TlsClientHello_Tls) GetSessionId

func (m *TlsClientHello_Tls) GetSessionId() string

func (*TlsClientHello_Tls) GetVersion

func (m *TlsClientHello_Tls) GetVersion() string

func (*TlsClientHello_Tls) ProtoMessage

func (*TlsClientHello_Tls) ProtoMessage()

func (*TlsClientHello_Tls) Reset

func (m *TlsClientHello_Tls) Reset()

func (*TlsClientHello_Tls) String

func (m *TlsClientHello_Tls) String() string

func (*TlsClientHello_Tls) XXX_DiscardUnknown

func (m *TlsClientHello_Tls) XXX_DiscardUnknown()

func (*TlsClientHello_Tls) XXX_Marshal

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

func (*TlsClientHello_Tls) XXX_Merge

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

func (*TlsClientHello_Tls) XXX_Size

func (m *TlsClientHello_Tls) XXX_Size() int

func (*TlsClientHello_Tls) XXX_Unmarshal

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

type TlsClientHello_Tls_Extension

type TlsClientHello_Tls_Extension struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Length               uint32   `protobuf:"varint,2,opt,name=length,proto3" json:"length,omitempty"`
	Type                 uint32   `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	Data                 []byte   `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TlsClientHello_Tls_Extension) Descriptor

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

func (*TlsClientHello_Tls_Extension) GetData

func (m *TlsClientHello_Tls_Extension) GetData() []byte

func (*TlsClientHello_Tls_Extension) GetLength

func (m *TlsClientHello_Tls_Extension) GetLength() uint32

func (*TlsClientHello_Tls_Extension) GetName

func (m *TlsClientHello_Tls_Extension) GetName() string

func (*TlsClientHello_Tls_Extension) GetType

func (m *TlsClientHello_Tls_Extension) GetType() uint32

func (*TlsClientHello_Tls_Extension) ProtoMessage

func (*TlsClientHello_Tls_Extension) ProtoMessage()

func (*TlsClientHello_Tls_Extension) Reset

func (m *TlsClientHello_Tls_Extension) Reset()

func (*TlsClientHello_Tls_Extension) String

func (*TlsClientHello_Tls_Extension) XXX_DiscardUnknown

func (m *TlsClientHello_Tls_Extension) XXX_DiscardUnknown()

func (*TlsClientHello_Tls_Extension) XXX_Marshal

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

func (*TlsClientHello_Tls_Extension) XXX_Merge

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

func (*TlsClientHello_Tls_Extension) XXX_Size

func (m *TlsClientHello_Tls_Extension) XXX_Size() int

func (*TlsClientHello_Tls_Extension) XXX_Unmarshal

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

type TlsClientHello_Tls_Random

type TlsClientHello_Tls_Random struct {
	Timestamp            uint64   `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	Data                 []byte   `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TlsClientHello_Tls_Random) Descriptor

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

func (*TlsClientHello_Tls_Random) GetData

func (m *TlsClientHello_Tls_Random) GetData() []byte

func (*TlsClientHello_Tls_Random) GetTimestamp

func (m *TlsClientHello_Tls_Random) GetTimestamp() uint64

func (*TlsClientHello_Tls_Random) ProtoMessage

func (*TlsClientHello_Tls_Random) ProtoMessage()

func (*TlsClientHello_Tls_Random) Reset

func (m *TlsClientHello_Tls_Random) Reset()

func (*TlsClientHello_Tls_Random) String

func (m *TlsClientHello_Tls_Random) String() string

func (*TlsClientHello_Tls_Random) XXX_DiscardUnknown

func (m *TlsClientHello_Tls_Random) XXX_DiscardUnknown()

func (*TlsClientHello_Tls_Random) XXX_Marshal

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

func (*TlsClientHello_Tls_Random) XXX_Merge

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

func (*TlsClientHello_Tls_Random) XXX_Size

func (m *TlsClientHello_Tls_Random) XXX_Size() int

func (*TlsClientHello_Tls_Random) XXX_Unmarshal

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

type TlsClientKeyExchange

type TlsClientKeyExchange struct {
	Tls                  *TlsClientKeyExchange_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*TlsClientKeyExchange) Descriptor

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

func (*TlsClientKeyExchange) GetTls

func (*TlsClientKeyExchange) ProtoMessage

func (*TlsClientKeyExchange) ProtoMessage()

func (*TlsClientKeyExchange) Reset

func (m *TlsClientKeyExchange) Reset()

func (*TlsClientKeyExchange) String

func (m *TlsClientKeyExchange) String() string

func (*TlsClientKeyExchange) XXX_DiscardUnknown

func (m *TlsClientKeyExchange) XXX_DiscardUnknown()

func (*TlsClientKeyExchange) XXX_Marshal

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

func (*TlsClientKeyExchange) XXX_Merge

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

func (*TlsClientKeyExchange) XXX_Size

func (m *TlsClientKeyExchange) XXX_Size() int

func (*TlsClientKeyExchange) XXX_Unmarshal

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

type TlsClientKeyExchange_Tls

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

func (*TlsClientKeyExchange_Tls) Descriptor

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

func (*TlsClientKeyExchange_Tls) GetKey

func (m *TlsClientKeyExchange_Tls) GetKey() []byte

func (*TlsClientKeyExchange_Tls) ProtoMessage

func (*TlsClientKeyExchange_Tls) ProtoMessage()

func (*TlsClientKeyExchange_Tls) Reset

func (m *TlsClientKeyExchange_Tls) Reset()

func (*TlsClientKeyExchange_Tls) String

func (m *TlsClientKeyExchange_Tls) String() string

func (*TlsClientKeyExchange_Tls) XXX_DiscardUnknown

func (m *TlsClientKeyExchange_Tls) XXX_DiscardUnknown()

func (*TlsClientKeyExchange_Tls) XXX_Marshal

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

func (*TlsClientKeyExchange_Tls) XXX_Merge

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

func (*TlsClientKeyExchange_Tls) XXX_Size

func (m *TlsClientKeyExchange_Tls) XXX_Size() int

func (*TlsClientKeyExchange_Tls) XXX_Unmarshal

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

type TlsHandshakeComplete

type TlsHandshakeComplete struct {
	Tls                  *TlsHandshakeComplete_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*TlsHandshakeComplete) Descriptor

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

func (*TlsHandshakeComplete) GetTls

func (*TlsHandshakeComplete) ProtoMessage

func (*TlsHandshakeComplete) ProtoMessage()

func (*TlsHandshakeComplete) Reset

func (m *TlsHandshakeComplete) Reset()

func (*TlsHandshakeComplete) String

func (m *TlsHandshakeComplete) String() string

func (*TlsHandshakeComplete) XXX_DiscardUnknown

func (m *TlsHandshakeComplete) XXX_DiscardUnknown()

func (*TlsHandshakeComplete) XXX_Marshal

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

func (*TlsHandshakeComplete) XXX_Merge

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

func (*TlsHandshakeComplete) XXX_Size

func (m *TlsHandshakeComplete) XXX_Size() int

func (*TlsHandshakeComplete) XXX_Unmarshal

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

type TlsHandshakeComplete_Tls

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

func (*TlsHandshakeComplete_Tls) Descriptor

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

func (*TlsHandshakeComplete_Tls) ProtoMessage

func (*TlsHandshakeComplete_Tls) ProtoMessage()

func (*TlsHandshakeComplete_Tls) Reset

func (m *TlsHandshakeComplete_Tls) Reset()

func (*TlsHandshakeComplete_Tls) String

func (m *TlsHandshakeComplete_Tls) String() string

func (*TlsHandshakeComplete_Tls) XXX_DiscardUnknown

func (m *TlsHandshakeComplete_Tls) XXX_DiscardUnknown()

func (*TlsHandshakeComplete_Tls) XXX_Marshal

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

func (*TlsHandshakeComplete_Tls) XXX_Merge

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

func (*TlsHandshakeComplete_Tls) XXX_Size

func (m *TlsHandshakeComplete_Tls) XXX_Size() int

func (*TlsHandshakeComplete_Tls) XXX_Unmarshal

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

type TlsHandshakeFinished

type TlsHandshakeFinished struct {
	Tls                  *TlsHandshakeFinished_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*TlsHandshakeFinished) Descriptor

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

func (*TlsHandshakeFinished) GetTls

func (*TlsHandshakeFinished) ProtoMessage

func (*TlsHandshakeFinished) ProtoMessage()

func (*TlsHandshakeFinished) Reset

func (m *TlsHandshakeFinished) Reset()

func (*TlsHandshakeFinished) String

func (m *TlsHandshakeFinished) String() string

func (*TlsHandshakeFinished) XXX_DiscardUnknown

func (m *TlsHandshakeFinished) XXX_DiscardUnknown()

func (*TlsHandshakeFinished) XXX_Marshal

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

func (*TlsHandshakeFinished) XXX_Merge

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

func (*TlsHandshakeFinished) XXX_Size

func (m *TlsHandshakeFinished) XXX_Size() int

func (*TlsHandshakeFinished) XXX_Unmarshal

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

type TlsHandshakeFinished_Tls

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

func (*TlsHandshakeFinished_Tls) Descriptor

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

func (*TlsHandshakeFinished_Tls) GetMessage

func (m *TlsHandshakeFinished_Tls) GetMessage() []byte

func (*TlsHandshakeFinished_Tls) ProtoMessage

func (*TlsHandshakeFinished_Tls) ProtoMessage()

func (*TlsHandshakeFinished_Tls) Reset

func (m *TlsHandshakeFinished_Tls) Reset()

func (*TlsHandshakeFinished_Tls) String

func (m *TlsHandshakeFinished_Tls) String() string

func (*TlsHandshakeFinished_Tls) XXX_DiscardUnknown

func (m *TlsHandshakeFinished_Tls) XXX_DiscardUnknown()

func (*TlsHandshakeFinished_Tls) XXX_Marshal

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

func (*TlsHandshakeFinished_Tls) XXX_Merge

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

func (*TlsHandshakeFinished_Tls) XXX_Size

func (m *TlsHandshakeFinished_Tls) XXX_Size() int

func (*TlsHandshakeFinished_Tls) XXX_Unmarshal

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

type TlsHandshakeGeneric

type TlsHandshakeGeneric struct {
	Tls                  *TlsHandshakeGeneric_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

func (*TlsHandshakeGeneric) Descriptor

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

func (*TlsHandshakeGeneric) GetTls

func (*TlsHandshakeGeneric) ProtoMessage

func (*TlsHandshakeGeneric) ProtoMessage()

func (*TlsHandshakeGeneric) Reset

func (m *TlsHandshakeGeneric) Reset()

func (*TlsHandshakeGeneric) String

func (m *TlsHandshakeGeneric) String() string

func (*TlsHandshakeGeneric) XXX_DiscardUnknown

func (m *TlsHandshakeGeneric) XXX_DiscardUnknown()

func (*TlsHandshakeGeneric) XXX_Marshal

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

func (*TlsHandshakeGeneric) XXX_Merge

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

func (*TlsHandshakeGeneric) XXX_Size

func (m *TlsHandshakeGeneric) XXX_Size() int

func (*TlsHandshakeGeneric) XXX_Unmarshal

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

type TlsHandshakeGeneric_Tls

type TlsHandshakeGeneric_Tls struct {
	Type                 uint32   `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
	Length               uint32   `protobuf:"varint,2,opt,name=length,proto3" json:"length,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TlsHandshakeGeneric_Tls) Descriptor

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

func (*TlsHandshakeGeneric_Tls) GetLength

func (m *TlsHandshakeGeneric_Tls) GetLength() uint32

func (*TlsHandshakeGeneric_Tls) GetType

func (m *TlsHandshakeGeneric_Tls) GetType() uint32

func (*TlsHandshakeGeneric_Tls) ProtoMessage

func (*TlsHandshakeGeneric_Tls) ProtoMessage()

func (*TlsHandshakeGeneric_Tls) Reset

func (m *TlsHandshakeGeneric_Tls) Reset()

func (*TlsHandshakeGeneric_Tls) String

func (m *TlsHandshakeGeneric_Tls) String() string

func (*TlsHandshakeGeneric_Tls) XXX_DiscardUnknown

func (m *TlsHandshakeGeneric_Tls) XXX_DiscardUnknown()

func (*TlsHandshakeGeneric_Tls) XXX_Marshal

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

func (*TlsHandshakeGeneric_Tls) XXX_Merge

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

func (*TlsHandshakeGeneric_Tls) XXX_Size

func (m *TlsHandshakeGeneric_Tls) XXX_Size() int

func (*TlsHandshakeGeneric_Tls) XXX_Unmarshal

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

type TlsServerHello

type TlsServerHello struct {
	Tls                  *TlsServerHello_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*TlsServerHello) Descriptor

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

func (*TlsServerHello) GetTls

func (m *TlsServerHello) GetTls() *TlsServerHello_Tls

func (*TlsServerHello) ProtoMessage

func (*TlsServerHello) ProtoMessage()

func (*TlsServerHello) Reset

func (m *TlsServerHello) Reset()

func (*TlsServerHello) String

func (m *TlsServerHello) String() string

func (*TlsServerHello) XXX_DiscardUnknown

func (m *TlsServerHello) XXX_DiscardUnknown()

func (*TlsServerHello) XXX_Marshal

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

func (*TlsServerHello) XXX_Merge

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

func (*TlsServerHello) XXX_Size

func (m *TlsServerHello) XXX_Size() int

func (*TlsServerHello) XXX_Unmarshal

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

type TlsServerHelloDone

type TlsServerHelloDone struct {
	Tls                  *TlsServerHelloDone_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*TlsServerHelloDone) Descriptor

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

func (*TlsServerHelloDone) GetTls

func (*TlsServerHelloDone) ProtoMessage

func (*TlsServerHelloDone) ProtoMessage()

func (*TlsServerHelloDone) Reset

func (m *TlsServerHelloDone) Reset()

func (*TlsServerHelloDone) String

func (m *TlsServerHelloDone) String() string

func (*TlsServerHelloDone) XXX_DiscardUnknown

func (m *TlsServerHelloDone) XXX_DiscardUnknown()

func (*TlsServerHelloDone) XXX_Marshal

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

func (*TlsServerHelloDone) XXX_Merge

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

func (*TlsServerHelloDone) XXX_Size

func (m *TlsServerHelloDone) XXX_Size() int

func (*TlsServerHelloDone) XXX_Unmarshal

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

type TlsServerHelloDone_Tls

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

func (*TlsServerHelloDone_Tls) Descriptor

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

func (*TlsServerHelloDone_Tls) ProtoMessage

func (*TlsServerHelloDone_Tls) ProtoMessage()

func (*TlsServerHelloDone_Tls) Reset

func (m *TlsServerHelloDone_Tls) Reset()

func (*TlsServerHelloDone_Tls) String

func (m *TlsServerHelloDone_Tls) String() string

func (*TlsServerHelloDone_Tls) XXX_DiscardUnknown

func (m *TlsServerHelloDone_Tls) XXX_DiscardUnknown()

func (*TlsServerHelloDone_Tls) XXX_Marshal

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

func (*TlsServerHelloDone_Tls) XXX_Merge

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

func (*TlsServerHelloDone_Tls) XXX_Size

func (m *TlsServerHelloDone_Tls) XXX_Size() int

func (*TlsServerHelloDone_Tls) XXX_Unmarshal

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

type TlsServerHello_Tls

type TlsServerHello_Tls struct {
	Version              string                          `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	SessionId            string                          `protobuf:"bytes,2,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
	Random               *TlsServerHello_Tls_Random      `protobuf:"bytes,3,opt,name=random,proto3" json:"random,omitempty"`
	CipherSuite          string                          `protobuf:"bytes,4,opt,name=cipher_suite,json=cipherSuite,proto3" json:"cipher_suite,omitempty"`
	CompressionMethod    string                          `protobuf:"bytes,5,opt,name=compression_method,json=compressionMethod,proto3" json:"compression_method,omitempty"`
	Extension            []*TlsServerHello_Tls_Extension `protobuf:"bytes,6,rep,name=extension,proto3" json:"extension,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                        `json:"-"`
	XXX_unrecognized     []byte                          `json:"-"`
	XXX_sizecache        int32                           `json:"-"`
}

func (*TlsServerHello_Tls) Descriptor

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

func (*TlsServerHello_Tls) GetCipherSuite

func (m *TlsServerHello_Tls) GetCipherSuite() string

func (*TlsServerHello_Tls) GetCompressionMethod

func (m *TlsServerHello_Tls) GetCompressionMethod() string

func (*TlsServerHello_Tls) GetExtension

func (m *TlsServerHello_Tls) GetExtension() []*TlsServerHello_Tls_Extension

func (*TlsServerHello_Tls) GetRandom

func (*TlsServerHello_Tls) GetSessionId

func (m *TlsServerHello_Tls) GetSessionId() string

func (*TlsServerHello_Tls) GetVersion

func (m *TlsServerHello_Tls) GetVersion() string

func (*TlsServerHello_Tls) ProtoMessage

func (*TlsServerHello_Tls) ProtoMessage()

func (*TlsServerHello_Tls) Reset

func (m *TlsServerHello_Tls) Reset()

func (*TlsServerHello_Tls) String

func (m *TlsServerHello_Tls) String() string

func (*TlsServerHello_Tls) XXX_DiscardUnknown

func (m *TlsServerHello_Tls) XXX_DiscardUnknown()

func (*TlsServerHello_Tls) XXX_Marshal

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

func (*TlsServerHello_Tls) XXX_Merge

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

func (*TlsServerHello_Tls) XXX_Size

func (m *TlsServerHello_Tls) XXX_Size() int

func (*TlsServerHello_Tls) XXX_Unmarshal

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

type TlsServerHello_Tls_Extension

type TlsServerHello_Tls_Extension struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Length               uint32   `protobuf:"varint,2,opt,name=length,proto3" json:"length,omitempty"`
	Type                 uint32   `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	Data                 []byte   `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TlsServerHello_Tls_Extension) Descriptor

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

func (*TlsServerHello_Tls_Extension) GetData

func (m *TlsServerHello_Tls_Extension) GetData() []byte

func (*TlsServerHello_Tls_Extension) GetLength

func (m *TlsServerHello_Tls_Extension) GetLength() uint32

func (*TlsServerHello_Tls_Extension) GetName

func (m *TlsServerHello_Tls_Extension) GetName() string

func (*TlsServerHello_Tls_Extension) GetType

func (m *TlsServerHello_Tls_Extension) GetType() uint32

func (*TlsServerHello_Tls_Extension) ProtoMessage

func (*TlsServerHello_Tls_Extension) ProtoMessage()

func (*TlsServerHello_Tls_Extension) Reset

func (m *TlsServerHello_Tls_Extension) Reset()

func (*TlsServerHello_Tls_Extension) String

func (*TlsServerHello_Tls_Extension) XXX_DiscardUnknown

func (m *TlsServerHello_Tls_Extension) XXX_DiscardUnknown()

func (*TlsServerHello_Tls_Extension) XXX_Marshal

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

func (*TlsServerHello_Tls_Extension) XXX_Merge

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

func (*TlsServerHello_Tls_Extension) XXX_Size

func (m *TlsServerHello_Tls_Extension) XXX_Size() int

func (*TlsServerHello_Tls_Extension) XXX_Unmarshal

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

type TlsServerHello_Tls_Random

type TlsServerHello_Tls_Random struct {
	Timestamp            uint64   `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	Data                 []byte   `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TlsServerHello_Tls_Random) Descriptor

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

func (*TlsServerHello_Tls_Random) GetData

func (m *TlsServerHello_Tls_Random) GetData() []byte

func (*TlsServerHello_Tls_Random) GetTimestamp

func (m *TlsServerHello_Tls_Random) GetTimestamp() uint64

func (*TlsServerHello_Tls_Random) ProtoMessage

func (*TlsServerHello_Tls_Random) ProtoMessage()

func (*TlsServerHello_Tls_Random) Reset

func (m *TlsServerHello_Tls_Random) Reset()

func (*TlsServerHello_Tls_Random) String

func (m *TlsServerHello_Tls_Random) String() string

func (*TlsServerHello_Tls_Random) XXX_DiscardUnknown

func (m *TlsServerHello_Tls_Random) XXX_DiscardUnknown()

func (*TlsServerHello_Tls_Random) XXX_Marshal

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

func (*TlsServerHello_Tls_Random) XXX_Merge

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

func (*TlsServerHello_Tls_Random) XXX_Size

func (m *TlsServerHello_Tls_Random) XXX_Size() int

func (*TlsServerHello_Tls_Random) XXX_Unmarshal

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

type TlsServerKeyExchange

type TlsServerKeyExchange struct {
	Tls                  *TlsServerKeyExchange_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*TlsServerKeyExchange) Descriptor

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

func (*TlsServerKeyExchange) GetTls

func (*TlsServerKeyExchange) ProtoMessage

func (*TlsServerKeyExchange) ProtoMessage()

func (*TlsServerKeyExchange) Reset

func (m *TlsServerKeyExchange) Reset()

func (*TlsServerKeyExchange) String

func (m *TlsServerKeyExchange) String() string

func (*TlsServerKeyExchange) XXX_DiscardUnknown

func (m *TlsServerKeyExchange) XXX_DiscardUnknown()

func (*TlsServerKeyExchange) XXX_Marshal

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

func (*TlsServerKeyExchange) XXX_Merge

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

func (*TlsServerKeyExchange) XXX_Size

func (m *TlsServerKeyExchange) XXX_Size() int

func (*TlsServerKeyExchange) XXX_Unmarshal

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

type TlsServerKeyExchange_DhAnon

type TlsServerKeyExchange_DhAnon struct {
	Prime                []byte   `protobuf:"bytes,1,opt,name=prime,proto3" json:"prime,omitempty"`
	Generator            []byte   `protobuf:"bytes,2,opt,name=generator,proto3" json:"generator,omitempty"`
	Pubkey               []byte   `protobuf:"bytes,3,opt,name=pubkey,proto3" json:"pubkey,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TlsServerKeyExchange_DhAnon) Descriptor

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

func (*TlsServerKeyExchange_DhAnon) GetGenerator

func (m *TlsServerKeyExchange_DhAnon) GetGenerator() []byte

func (*TlsServerKeyExchange_DhAnon) GetPrime

func (m *TlsServerKeyExchange_DhAnon) GetPrime() []byte

func (*TlsServerKeyExchange_DhAnon) GetPubkey

func (m *TlsServerKeyExchange_DhAnon) GetPubkey() []byte

func (*TlsServerKeyExchange_DhAnon) ProtoMessage

func (*TlsServerKeyExchange_DhAnon) ProtoMessage()

func (*TlsServerKeyExchange_DhAnon) Reset

func (m *TlsServerKeyExchange_DhAnon) Reset()

func (*TlsServerKeyExchange_DhAnon) String

func (m *TlsServerKeyExchange_DhAnon) String() string

func (*TlsServerKeyExchange_DhAnon) XXX_DiscardUnknown

func (m *TlsServerKeyExchange_DhAnon) XXX_DiscardUnknown()

func (*TlsServerKeyExchange_DhAnon) XXX_Marshal

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

func (*TlsServerKeyExchange_DhAnon) XXX_Merge

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

func (*TlsServerKeyExchange_DhAnon) XXX_Size

func (m *TlsServerKeyExchange_DhAnon) XXX_Size() int

func (*TlsServerKeyExchange_DhAnon) XXX_Unmarshal

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

type TlsServerKeyExchange_DhRsa

type TlsServerKeyExchange_DhRsa struct {
	Prime                []byte   `protobuf:"bytes,1,opt,name=prime,proto3" json:"prime,omitempty"`
	Generator            []byte   `protobuf:"bytes,2,opt,name=generator,proto3" json:"generator,omitempty"`
	Pubkey               []byte   `protobuf:"bytes,3,opt,name=pubkey,proto3" json:"pubkey,omitempty"`
	Signature            []byte   `protobuf:"bytes,4,opt,name=signature,proto3" json:"signature,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TlsServerKeyExchange_DhRsa) Descriptor

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

func (*TlsServerKeyExchange_DhRsa) GetGenerator

func (m *TlsServerKeyExchange_DhRsa) GetGenerator() []byte

func (*TlsServerKeyExchange_DhRsa) GetPrime

func (m *TlsServerKeyExchange_DhRsa) GetPrime() []byte

func (*TlsServerKeyExchange_DhRsa) GetPubkey

func (m *TlsServerKeyExchange_DhRsa) GetPubkey() []byte

func (*TlsServerKeyExchange_DhRsa) GetSignature

func (m *TlsServerKeyExchange_DhRsa) GetSignature() []byte

func (*TlsServerKeyExchange_DhRsa) ProtoMessage

func (*TlsServerKeyExchange_DhRsa) ProtoMessage()

func (*TlsServerKeyExchange_DhRsa) Reset

func (m *TlsServerKeyExchange_DhRsa) Reset()

func (*TlsServerKeyExchange_DhRsa) String

func (m *TlsServerKeyExchange_DhRsa) String() string

func (*TlsServerKeyExchange_DhRsa) XXX_DiscardUnknown

func (m *TlsServerKeyExchange_DhRsa) XXX_DiscardUnknown()

func (*TlsServerKeyExchange_DhRsa) XXX_Marshal

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

func (*TlsServerKeyExchange_DhRsa) XXX_Merge

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

func (*TlsServerKeyExchange_DhRsa) XXX_Size

func (m *TlsServerKeyExchange_DhRsa) XXX_Size() int

func (*TlsServerKeyExchange_DhRsa) XXX_Unmarshal

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

type TlsServerKeyExchange_Ecdh

type TlsServerKeyExchange_Ecdh struct {
	CurveType              uint32            `protobuf:"varint,1,opt,name=curve_type,json=curveType,proto3" json:"curve_type,omitempty"`
	CurveMetadata          map[string]string `` /* 188-byte string literal not displayed */
	PublicKey              []byte            `protobuf:"bytes,3,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"`
	SignatureHashAlgorithm uint32            `` /* 130-byte string literal not displayed */
	SignatureAlgorithm     uint32            `protobuf:"varint,5,opt,name=signature_algorithm,json=signatureAlgorithm,proto3" json:"signature_algorithm,omitempty"`
	SignatureHash          string            `protobuf:"bytes,6,opt,name=signature_hash,json=signatureHash,proto3" json:"signature_hash,omitempty"`
	XXX_NoUnkeyedLiteral   struct{}          `json:"-"`
	XXX_unrecognized       []byte            `json:"-"`
	XXX_sizecache          int32             `json:"-"`
}

func (*TlsServerKeyExchange_Ecdh) Descriptor

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

func (*TlsServerKeyExchange_Ecdh) GetCurveMetadata

func (m *TlsServerKeyExchange_Ecdh) GetCurveMetadata() map[string]string

func (*TlsServerKeyExchange_Ecdh) GetCurveType

func (m *TlsServerKeyExchange_Ecdh) GetCurveType() uint32

func (*TlsServerKeyExchange_Ecdh) GetPublicKey

func (m *TlsServerKeyExchange_Ecdh) GetPublicKey() []byte

func (*TlsServerKeyExchange_Ecdh) GetSignatureAlgorithm

func (m *TlsServerKeyExchange_Ecdh) GetSignatureAlgorithm() uint32

func (*TlsServerKeyExchange_Ecdh) GetSignatureHash

func (m *TlsServerKeyExchange_Ecdh) GetSignatureHash() string

func (*TlsServerKeyExchange_Ecdh) GetSignatureHashAlgorithm

func (m *TlsServerKeyExchange_Ecdh) GetSignatureHashAlgorithm() uint32

func (*TlsServerKeyExchange_Ecdh) ProtoMessage

func (*TlsServerKeyExchange_Ecdh) ProtoMessage()

func (*TlsServerKeyExchange_Ecdh) Reset

func (m *TlsServerKeyExchange_Ecdh) Reset()

func (*TlsServerKeyExchange_Ecdh) String

func (m *TlsServerKeyExchange_Ecdh) String() string

func (*TlsServerKeyExchange_Ecdh) XXX_DiscardUnknown

func (m *TlsServerKeyExchange_Ecdh) XXX_DiscardUnknown()

func (*TlsServerKeyExchange_Ecdh) XXX_Marshal

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

func (*TlsServerKeyExchange_Ecdh) XXX_Merge

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

func (*TlsServerKeyExchange_Ecdh) XXX_Size

func (m *TlsServerKeyExchange_Ecdh) XXX_Size() int

func (*TlsServerKeyExchange_Ecdh) XXX_Unmarshal

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

type TlsServerKeyExchange_Tls

type TlsServerKeyExchange_Tls struct {
	KeyExchangeAlgorithm string `protobuf:"bytes,1,opt,name=key_exchange_algorithm,json=keyExchangeAlgorithm,proto3" json:"key_exchange_algorithm,omitempty"`
	// Types that are valid to be assigned to Detail:
	//	*TlsServerKeyExchange_Tls_Ecdh
	//	*TlsServerKeyExchange_Tls_Dhanon
	//	*TlsServerKeyExchange_Tls_Dhrsa
	Detail               isTlsServerKeyExchange_Tls_Detail `protobuf_oneof:"Detail"`
	XXX_NoUnkeyedLiteral struct{}                          `json:"-"`
	XXX_unrecognized     []byte                            `json:"-"`
	XXX_sizecache        int32                             `json:"-"`
}

func (*TlsServerKeyExchange_Tls) Descriptor

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

func (*TlsServerKeyExchange_Tls) GetDetail

func (m *TlsServerKeyExchange_Tls) GetDetail() isTlsServerKeyExchange_Tls_Detail

func (*TlsServerKeyExchange_Tls) GetDhanon

func (*TlsServerKeyExchange_Tls) GetDhrsa

func (*TlsServerKeyExchange_Tls) GetEcdh

func (*TlsServerKeyExchange_Tls) GetKeyExchangeAlgorithm

func (m *TlsServerKeyExchange_Tls) GetKeyExchangeAlgorithm() string

func (*TlsServerKeyExchange_Tls) ProtoMessage

func (*TlsServerKeyExchange_Tls) ProtoMessage()

func (*TlsServerKeyExchange_Tls) Reset

func (m *TlsServerKeyExchange_Tls) Reset()

func (*TlsServerKeyExchange_Tls) String

func (m *TlsServerKeyExchange_Tls) String() string

func (*TlsServerKeyExchange_Tls) XXX_DiscardUnknown

func (m *TlsServerKeyExchange_Tls) XXX_DiscardUnknown()

func (*TlsServerKeyExchange_Tls) XXX_Marshal

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

func (*TlsServerKeyExchange_Tls) XXX_Merge

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

func (*TlsServerKeyExchange_Tls) XXX_OneofWrappers

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

XXX_OneofWrappers is for the internal use of the proto package.

func (*TlsServerKeyExchange_Tls) XXX_Size

func (m *TlsServerKeyExchange_Tls) XXX_Size() int

func (*TlsServerKeyExchange_Tls) XXX_Unmarshal

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

type TlsServerKeyExchange_Tls_Dhanon

type TlsServerKeyExchange_Tls_Dhanon struct {
	Dhanon *TlsServerKeyExchange_DhAnon `protobuf:"bytes,3,opt,name=dhanon,proto3,oneof"`
}

type TlsServerKeyExchange_Tls_Dhrsa

type TlsServerKeyExchange_Tls_Dhrsa struct {
	Dhrsa *TlsServerKeyExchange_DhRsa `protobuf:"bytes,4,opt,name=dhrsa,proto3,oneof"`
}

type TlsServerKeyExchange_Tls_Ecdh

type TlsServerKeyExchange_Tls_Ecdh struct {
	Ecdh *TlsServerKeyExchange_Ecdh `protobuf:"bytes,2,opt,name=ecdh,proto3,oneof"`
}

type TlsUnknown

type TlsUnknown struct {
	Tls                  *TlsUnknown_Tls `protobuf:"bytes,1,opt,name=tls,proto3" json:"tls,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*TlsUnknown) Descriptor

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

func (*TlsUnknown) GetTls

func (m *TlsUnknown) GetTls() *TlsUnknown_Tls

func (*TlsUnknown) ProtoMessage

func (*TlsUnknown) ProtoMessage()

func (*TlsUnknown) Reset

func (m *TlsUnknown) Reset()

func (*TlsUnknown) String

func (m *TlsUnknown) String() string

func (*TlsUnknown) XXX_DiscardUnknown

func (m *TlsUnknown) XXX_DiscardUnknown()

func (*TlsUnknown) XXX_Marshal

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

func (*TlsUnknown) XXX_Merge

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

func (*TlsUnknown) XXX_Size

func (m *TlsUnknown) XXX_Size() int

func (*TlsUnknown) XXX_Unmarshal

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

type TlsUnknown_Tls

type TlsUnknown_Tls struct {
	Version              string   `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	ContentType          uint32   `protobuf:"varint,2,opt,name=content_type,json=contentType,proto3" json:"content_type,omitempty"`
	Length               uint64   `protobuf:"varint,3,opt,name=length,proto3" json:"length,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TlsUnknown_Tls) Descriptor

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

func (*TlsUnknown_Tls) GetContentType

func (m *TlsUnknown_Tls) GetContentType() uint32

func (*TlsUnknown_Tls) GetLength

func (m *TlsUnknown_Tls) GetLength() uint64

func (*TlsUnknown_Tls) GetVersion

func (m *TlsUnknown_Tls) GetVersion() string

func (*TlsUnknown_Tls) ProtoMessage

func (*TlsUnknown_Tls) ProtoMessage()

func (*TlsUnknown_Tls) Reset

func (m *TlsUnknown_Tls) Reset()

func (*TlsUnknown_Tls) String

func (m *TlsUnknown_Tls) String() string

func (*TlsUnknown_Tls) XXX_DiscardUnknown

func (m *TlsUnknown_Tls) XXX_DiscardUnknown()

func (*TlsUnknown_Tls) XXX_Marshal

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

func (*TlsUnknown_Tls) XXX_Merge

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

func (*TlsUnknown_Tls) XXX_Size

func (m *TlsUnknown_Tls) XXX_Size() int

func (*TlsUnknown_Tls) XXX_Unmarshal

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

type TriggerDown

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

func (*TriggerDown) Descriptor

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

func (*TriggerDown) ProtoMessage

func (*TriggerDown) ProtoMessage()

func (*TriggerDown) Reset

func (m *TriggerDown) Reset()

func (*TriggerDown) String

func (m *TriggerDown) String() string

func (*TriggerDown) XXX_DiscardUnknown

func (m *TriggerDown) XXX_DiscardUnknown()

func (*TriggerDown) XXX_Marshal

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

func (*TriggerDown) XXX_Merge

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

func (*TriggerDown) XXX_Size

func (m *TriggerDown) XXX_Size() int

func (*TriggerDown) XXX_Unmarshal

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

type TriggerUp

type TriggerUp struct {
	Address              *Address `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TriggerUp) Descriptor

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

func (*TriggerUp) GetAddress

func (m *TriggerUp) GetAddress() *Address

func (*TriggerUp) ProtoMessage

func (*TriggerUp) ProtoMessage()

func (*TriggerUp) Reset

func (m *TriggerUp) Reset()

func (*TriggerUp) String

func (m *TriggerUp) String() string

func (*TriggerUp) XXX_DiscardUnknown

func (m *TriggerUp) XXX_DiscardUnknown()

func (*TriggerUp) XXX_Marshal

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

func (*TriggerUp) XXX_Merge

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

func (*TriggerUp) XXX_Size

func (m *TriggerUp) XXX_Size() int

func (*TriggerUp) XXX_Unmarshal

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

type UnimplementedEventStreamServer

type UnimplementedEventStreamServer struct {
}

UnimplementedEventStreamServer can be embedded to have forward compatible implementations.

func (*UnimplementedEventStreamServer) Observe

type UnrecognisedDatagram

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

func (*UnrecognisedDatagram) Descriptor

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

func (*UnrecognisedDatagram) GetPayload

func (m *UnrecognisedDatagram) GetPayload() []byte

func (*UnrecognisedDatagram) ProtoMessage

func (*UnrecognisedDatagram) ProtoMessage()

func (*UnrecognisedDatagram) Reset

func (m *UnrecognisedDatagram) Reset()

func (*UnrecognisedDatagram) String

func (m *UnrecognisedDatagram) String() string

func (*UnrecognisedDatagram) XXX_DiscardUnknown

func (m *UnrecognisedDatagram) XXX_DiscardUnknown()

func (*UnrecognisedDatagram) XXX_Marshal

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

func (*UnrecognisedDatagram) XXX_Merge

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

func (*UnrecognisedDatagram) XXX_Size

func (m *UnrecognisedDatagram) XXX_Size() int

func (*UnrecognisedDatagram) XXX_Unmarshal

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

type UnrecognisedIpProtocol

type UnrecognisedIpProtocol struct {
	NextProto            uint32   `protobuf:"varint,1,opt,name=next_proto,json=nextProto,proto3" json:"next_proto,omitempty"`
	SequenceNumber       uint32   `protobuf:"varint,2,opt,name=sequence_number,json=sequenceNumber,proto3" json:"sequence_number,omitempty"`
	Payload              []byte   `protobuf:"bytes,3,opt,name=payload,proto3" json:"payload,omitempty"`
	PayloadLength        uint32   `protobuf:"varint,4,opt,name=payload_length,json=payloadLength,proto3" json:"payload_length,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UnrecognisedIpProtocol) Descriptor

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

func (*UnrecognisedIpProtocol) GetNextProto

func (m *UnrecognisedIpProtocol) GetNextProto() uint32

func (*UnrecognisedIpProtocol) GetPayload

func (m *UnrecognisedIpProtocol) GetPayload() []byte

func (*UnrecognisedIpProtocol) GetPayloadLength

func (m *UnrecognisedIpProtocol) GetPayloadLength() uint32

func (*UnrecognisedIpProtocol) GetSequenceNumber

func (m *UnrecognisedIpProtocol) GetSequenceNumber() uint32

func (*UnrecognisedIpProtocol) ProtoMessage

func (*UnrecognisedIpProtocol) ProtoMessage()

func (*UnrecognisedIpProtocol) Reset

func (m *UnrecognisedIpProtocol) Reset()

func (*UnrecognisedIpProtocol) String

func (m *UnrecognisedIpProtocol) String() string

func (*UnrecognisedIpProtocol) XXX_DiscardUnknown

func (m *UnrecognisedIpProtocol) XXX_DiscardUnknown()

func (*UnrecognisedIpProtocol) XXX_Marshal

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

func (*UnrecognisedIpProtocol) XXX_Merge

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

func (*UnrecognisedIpProtocol) XXX_Size

func (m *UnrecognisedIpProtocol) XXX_Size() int

func (*UnrecognisedIpProtocol) XXX_Unmarshal

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

type UnrecognisedStream

type UnrecognisedStream struct {
	Payload              []byte   `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
	Position             int64    `protobuf:"varint,2,opt,name=position,proto3" json:"position,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UnrecognisedStream) Descriptor

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

func (*UnrecognisedStream) GetPayload

func (m *UnrecognisedStream) GetPayload() []byte

func (*UnrecognisedStream) GetPosition

func (m *UnrecognisedStream) GetPosition() int64

func (*UnrecognisedStream) ProtoMessage

func (*UnrecognisedStream) ProtoMessage()

func (*UnrecognisedStream) Reset

func (m *UnrecognisedStream) Reset()

func (*UnrecognisedStream) String

func (m *UnrecognisedStream) String() string

func (*UnrecognisedStream) XXX_DiscardUnknown

func (m *UnrecognisedStream) XXX_DiscardUnknown()

func (*UnrecognisedStream) XXX_Marshal

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

func (*UnrecognisedStream) XXX_Merge

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

func (*UnrecognisedStream) XXX_Size

func (m *UnrecognisedStream) XXX_Size() int

func (*UnrecognisedStream) XXX_Unmarshal

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

type Wlan

type Wlan struct {
	Version              uint32   `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	Type                 uint32   `protobuf:"varint,2,opt,name=type,proto3" json:"type,omitempty"`
	Subtype              uint32   `protobuf:"varint,3,opt,name=subtype,proto3" json:"subtype,omitempty"`
	Flags                uint32   `protobuf:"varint,4,opt,name=flags,proto3" json:"flags,omitempty"`
	Protected            bool     `protobuf:"varint,5,opt,name=protected,proto3" json:"protected,omitempty"`
	FiltAddr             string   `protobuf:"bytes,6,opt,name=filt_addr,json=filtAddr,proto3" json:"filt_addr,omitempty"`
	FragNum              uint32   `protobuf:"varint,7,opt,name=frag_num,json=fragNum,proto3" json:"frag_num,omitempty"`
	SeqNum               uint32   `protobuf:"varint,8,opt,name=seq_num,json=seqNum,proto3" json:"seq_num,omitempty"`
	Duration             uint32   `protobuf:"varint,9,opt,name=duration,proto3" json:"duration,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Wlan) Descriptor

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

func (*Wlan) GetDuration

func (m *Wlan) GetDuration() uint32

func (*Wlan) GetFiltAddr

func (m *Wlan) GetFiltAddr() string

func (*Wlan) GetFlags

func (m *Wlan) GetFlags() uint32

func (*Wlan) GetFragNum

func (m *Wlan) GetFragNum() uint32

func (*Wlan) GetProtected

func (m *Wlan) GetProtected() bool

func (*Wlan) GetSeqNum

func (m *Wlan) GetSeqNum() uint32

func (*Wlan) GetSubtype

func (m *Wlan) GetSubtype() uint32

func (*Wlan) GetType

func (m *Wlan) GetType() uint32

func (*Wlan) GetVersion

func (m *Wlan) GetVersion() uint32

func (*Wlan) ProtoMessage

func (*Wlan) ProtoMessage()

func (*Wlan) Reset

func (m *Wlan) Reset()

func (*Wlan) String

func (m *Wlan) String() string

func (*Wlan) XXX_DiscardUnknown

func (m *Wlan) XXX_DiscardUnknown()

func (*Wlan) XXX_Marshal

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

func (*Wlan) XXX_Merge

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

func (*Wlan) XXX_Size

func (m *Wlan) XXX_Size() int

func (*Wlan) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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