api

package
v0.0.0-...-d238303 Latest Latest
Warning

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

Go to latest
Published: Mar 31, 2022 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RegisterControlServiceServer

func RegisterControlServiceServer(s *grpc.Server, srv ControlServiceServer)

Types

type BackendServiceUser

type BackendServiceUser struct {
	UserAddr             string   `protobuf:"bytes,1,opt,name=user_addr,json=userAddr,proto3" json:"user_addr,omitempty"`
	SpeedIn              float64  `protobuf:"fixed64,2,opt,name=speed_in,json=speedIn,proto3" json:"speed_in,omitempty"`
	SpeedOut             float64  `protobuf:"fixed64,3,opt,name=speed_out,json=speedOut,proto3" json:"speed_out,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BackendServiceUser) Descriptor

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

func (*BackendServiceUser) GetSpeedIn

func (m *BackendServiceUser) GetSpeedIn() float64

func (*BackendServiceUser) GetSpeedOut

func (m *BackendServiceUser) GetSpeedOut() float64

func (*BackendServiceUser) GetUserAddr

func (m *BackendServiceUser) GetUserAddr() string

func (*BackendServiceUser) ProtoMessage

func (*BackendServiceUser) ProtoMessage()

func (*BackendServiceUser) Reset

func (m *BackendServiceUser) Reset()

func (*BackendServiceUser) String

func (m *BackendServiceUser) String() string

func (*BackendServiceUser) Validate

func (this *BackendServiceUser) Validate() error

func (*BackendServiceUser) XXX_DiscardUnknown

func (m *BackendServiceUser) XXX_DiscardUnknown()

func (*BackendServiceUser) XXX_Marshal

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

func (*BackendServiceUser) XXX_Merge

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

func (*BackendServiceUser) XXX_Size

func (m *BackendServiceUser) XXX_Size() int

func (*BackendServiceUser) XXX_Unmarshal

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

type Client

type Client struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Token                string   `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
	DisplayName          string   `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	InternalAddress      string   `protobuf:"bytes,4,opt,name=internal_address,json=internalAddress,proto3" json:"internal_address,omitempty"`
	SharePublicAddr      bool     `protobuf:"varint,5,opt,name=share_public_addr,json=sharePublicAddr,proto3" json:"share_public_addr,omitempty"`
	PublicAddress        string   `protobuf:"bytes,6,opt,name=public_address,json=publicAddress,proto3" json:"public_address,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Client) Descriptor

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

func (*Client) GetDisplayName

func (m *Client) GetDisplayName() string

func (*Client) GetInternalAddress

func (m *Client) GetInternalAddress() string

func (*Client) GetName

func (m *Client) GetName() string

func (*Client) GetPublicAddress

func (m *Client) GetPublicAddress() string

func (*Client) GetSharePublicAddr

func (m *Client) GetSharePublicAddr() bool

func (*Client) GetToken

func (m *Client) GetToken() string

func (*Client) ProtoMessage

func (*Client) ProtoMessage()

func (*Client) Reset

func (m *Client) Reset()

func (*Client) String

func (m *Client) String() string

func (*Client) Validate

func (this *Client) Validate() error

func (*Client) XXX_DiscardUnknown

func (m *Client) XXX_DiscardUnknown()

func (*Client) XXX_Marshal

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

func (*Client) XXX_Merge

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

func (*Client) XXX_Size

func (m *Client) XXX_Size() int

func (*Client) XXX_Unmarshal

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

type ControlServiceClient

type ControlServiceClient interface {
	CreateClient(ctx context.Context, in *CreateClientRequest, opts ...grpc.CallOption) (ControlService_CreateClientClient, error)
	ListClients(ctx context.Context, in *ListClientsRequest, opts ...grpc.CallOption) (*ListClientsResponse, error)
	ListBackendServiceUsers(ctx context.Context, in *ListBackendServiceUsersRequest, opts ...grpc.CallOption) (*ListBackendServiceUsersResponse, error)
	StartInternalService(ctx context.Context, in *StartInternalServiceRequest, opts ...grpc.CallOption) (*InternalService, error)
	ListInternalService(ctx context.Context, in *ListInternalServiceRequest, opts ...grpc.CallOption) (*ListInternalServiceResponse, error)
}

ControlServiceClient is the client API for ControlService service.

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

func NewControlServiceClient

func NewControlServiceClient(cc *grpc.ClientConn) ControlServiceClient

type ControlServiceServer

ControlServiceServer is the server API for ControlService service.

type ControlService_CreateClientClient

type ControlService_CreateClientClient interface {
	Recv() (*Client, error)
	grpc.ClientStream
}

type ControlService_CreateClientServer

type ControlService_CreateClientServer interface {
	Send(*Client) error
	grpc.ServerStream
}

type CreateClientRequest

type CreateClientRequest struct {
	DisplayName          string   `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	InternalPort         int32    `protobuf:"varint,2,opt,name=internal_port,json=internalPort,proto3" json:"internal_port,omitempty"`
	PublicPort           int32    `protobuf:"varint,3,opt,name=public_port,json=publicPort,proto3" json:"public_port,omitempty"`
	SharePublicAddr      bool     `protobuf:"varint,4,opt,name=share_public_addr,json=sharePublicAddr,proto3" json:"share_public_addr,omitempty"`
	Protocol             string   `protobuf:"bytes,5,opt,name=protocol,proto3" json:"protocol,omitempty"`
	BackendPort          int32    `protobuf:"varint,6,opt,name=backend_port,json=backendPort,proto3" json:"backend_port,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateClientRequest) Descriptor

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

func (*CreateClientRequest) GetBackendPort

func (m *CreateClientRequest) GetBackendPort() int32

func (*CreateClientRequest) GetDisplayName

func (m *CreateClientRequest) GetDisplayName() string

func (*CreateClientRequest) GetInternalPort

func (m *CreateClientRequest) GetInternalPort() int32

func (*CreateClientRequest) GetProtocol

func (m *CreateClientRequest) GetProtocol() string

func (*CreateClientRequest) GetPublicPort

func (m *CreateClientRequest) GetPublicPort() int32

func (*CreateClientRequest) GetSharePublicAddr

func (m *CreateClientRequest) GetSharePublicAddr() bool

func (*CreateClientRequest) ProtoMessage

func (*CreateClientRequest) ProtoMessage()

func (*CreateClientRequest) Reset

func (m *CreateClientRequest) Reset()

func (*CreateClientRequest) String

func (m *CreateClientRequest) String() string

func (*CreateClientRequest) Validate

func (this *CreateClientRequest) Validate() error

func (*CreateClientRequest) XXX_DiscardUnknown

func (m *CreateClientRequest) XXX_DiscardUnknown()

func (*CreateClientRequest) XXX_Marshal

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

func (*CreateClientRequest) XXX_Merge

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

func (*CreateClientRequest) XXX_Size

func (m *CreateClientRequest) XXX_Size() int

func (*CreateClientRequest) XXX_Unmarshal

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

type InternalService

type InternalService struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Addr                 string   `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"`
	ServiceName          string   `protobuf:"bytes,3,opt,name=service_name,json=serviceName,proto3" json:"service_name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*InternalService) Descriptor

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

func (*InternalService) GetAddr

func (m *InternalService) GetAddr() string

func (*InternalService) GetName

func (m *InternalService) GetName() string

func (*InternalService) GetServiceName

func (m *InternalService) GetServiceName() string

func (*InternalService) ProtoMessage

func (*InternalService) ProtoMessage()

func (*InternalService) Reset

func (m *InternalService) Reset()

func (*InternalService) String

func (m *InternalService) String() string

func (*InternalService) Validate

func (this *InternalService) Validate() error

func (*InternalService) XXX_DiscardUnknown

func (m *InternalService) XXX_DiscardUnknown()

func (*InternalService) XXX_Marshal

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

func (*InternalService) XXX_Merge

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

func (*InternalService) XXX_Size

func (m *InternalService) XXX_Size() int

func (*InternalService) XXX_Unmarshal

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

type ListBackendServiceUsersRequest

type ListBackendServiceUsersRequest struct {
	Parent               string   `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	PageToken            string   `protobuf:"bytes,2,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListBackendServiceUsersRequest) Descriptor

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

func (*ListBackendServiceUsersRequest) GetPageToken

func (m *ListBackendServiceUsersRequest) GetPageToken() string

func (*ListBackendServiceUsersRequest) GetParent

func (m *ListBackendServiceUsersRequest) GetParent() string

func (*ListBackendServiceUsersRequest) ProtoMessage

func (*ListBackendServiceUsersRequest) ProtoMessage()

func (*ListBackendServiceUsersRequest) Reset

func (m *ListBackendServiceUsersRequest) Reset()

func (*ListBackendServiceUsersRequest) String

func (*ListBackendServiceUsersRequest) Validate

func (this *ListBackendServiceUsersRequest) Validate() error

func (*ListBackendServiceUsersRequest) XXX_DiscardUnknown

func (m *ListBackendServiceUsersRequest) XXX_DiscardUnknown()

func (*ListBackendServiceUsersRequest) XXX_Marshal

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

func (*ListBackendServiceUsersRequest) XXX_Merge

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

func (*ListBackendServiceUsersRequest) XXX_Size

func (m *ListBackendServiceUsersRequest) XXX_Size() int

func (*ListBackendServiceUsersRequest) XXX_Unmarshal

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

type ListBackendServiceUsersResponse

type ListBackendServiceUsersResponse struct {
	Users                []*BackendServiceUser `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
	NextPageToken        string                `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	TotalCount           int32                 `protobuf:"varint,3,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*ListBackendServiceUsersResponse) Descriptor

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

func (*ListBackendServiceUsersResponse) GetNextPageToken

func (m *ListBackendServiceUsersResponse) GetNextPageToken() string

func (*ListBackendServiceUsersResponse) GetTotalCount

func (m *ListBackendServiceUsersResponse) GetTotalCount() int32

func (*ListBackendServiceUsersResponse) GetUsers

func (*ListBackendServiceUsersResponse) ProtoMessage

func (*ListBackendServiceUsersResponse) ProtoMessage()

func (*ListBackendServiceUsersResponse) Reset

func (*ListBackendServiceUsersResponse) String

func (*ListBackendServiceUsersResponse) Validate

func (this *ListBackendServiceUsersResponse) Validate() error

func (*ListBackendServiceUsersResponse) XXX_DiscardUnknown

func (m *ListBackendServiceUsersResponse) XXX_DiscardUnknown()

func (*ListBackendServiceUsersResponse) XXX_Marshal

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

func (*ListBackendServiceUsersResponse) XXX_Merge

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

func (*ListBackendServiceUsersResponse) XXX_Size

func (m *ListBackendServiceUsersResponse) XXX_Size() int

func (*ListBackendServiceUsersResponse) XXX_Unmarshal

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

type ListClientsRequest

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

func (*ListClientsRequest) Descriptor

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

func (*ListClientsRequest) GetPageToken

func (m *ListClientsRequest) GetPageToken() string

func (*ListClientsRequest) ProtoMessage

func (*ListClientsRequest) ProtoMessage()

func (*ListClientsRequest) Reset

func (m *ListClientsRequest) Reset()

func (*ListClientsRequest) String

func (m *ListClientsRequest) String() string

func (*ListClientsRequest) Validate

func (this *ListClientsRequest) Validate() error

func (*ListClientsRequest) XXX_DiscardUnknown

func (m *ListClientsRequest) XXX_DiscardUnknown()

func (*ListClientsRequest) XXX_Marshal

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

func (*ListClientsRequest) XXX_Merge

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

func (*ListClientsRequest) XXX_Size

func (m *ListClientsRequest) XXX_Size() int

func (*ListClientsRequest) XXX_Unmarshal

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

type ListClientsResponse

type ListClientsResponse struct {
	Clients              []*Client `protobuf:"bytes,1,rep,name=clients,proto3" json:"clients,omitempty"`
	NextPageToken        string    `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	TotalCount           int32     `protobuf:"varint,3,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*ListClientsResponse) Descriptor

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

func (*ListClientsResponse) GetClients

func (m *ListClientsResponse) GetClients() []*Client

func (*ListClientsResponse) GetNextPageToken

func (m *ListClientsResponse) GetNextPageToken() string

func (*ListClientsResponse) GetTotalCount

func (m *ListClientsResponse) GetTotalCount() int32

func (*ListClientsResponse) ProtoMessage

func (*ListClientsResponse) ProtoMessage()

func (*ListClientsResponse) Reset

func (m *ListClientsResponse) Reset()

func (*ListClientsResponse) String

func (m *ListClientsResponse) String() string

func (*ListClientsResponse) Validate

func (this *ListClientsResponse) Validate() error

func (*ListClientsResponse) XXX_DiscardUnknown

func (m *ListClientsResponse) XXX_DiscardUnknown()

func (*ListClientsResponse) XXX_Marshal

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

func (*ListClientsResponse) XXX_Merge

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

func (*ListClientsResponse) XXX_Size

func (m *ListClientsResponse) XXX_Size() int

func (*ListClientsResponse) XXX_Unmarshal

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

type ListInternalServiceRequest

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

func (*ListInternalServiceRequest) Descriptor

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

func (*ListInternalServiceRequest) GetPageToken

func (m *ListInternalServiceRequest) GetPageToken() string

func (*ListInternalServiceRequest) ProtoMessage

func (*ListInternalServiceRequest) ProtoMessage()

func (*ListInternalServiceRequest) Reset

func (m *ListInternalServiceRequest) Reset()

func (*ListInternalServiceRequest) String

func (m *ListInternalServiceRequest) String() string

func (*ListInternalServiceRequest) Validate

func (this *ListInternalServiceRequest) Validate() error

func (*ListInternalServiceRequest) XXX_DiscardUnknown

func (m *ListInternalServiceRequest) XXX_DiscardUnknown()

func (*ListInternalServiceRequest) XXX_Marshal

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

func (*ListInternalServiceRequest) XXX_Merge

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

func (*ListInternalServiceRequest) XXX_Size

func (m *ListInternalServiceRequest) XXX_Size() int

func (*ListInternalServiceRequest) XXX_Unmarshal

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

type ListInternalServiceResponse

type ListInternalServiceResponse struct {
	Services             []*InternalService `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
	NextPageToken        string             `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	TotalCount           int32              `protobuf:"varint,3,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*ListInternalServiceResponse) Descriptor

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

func (*ListInternalServiceResponse) GetNextPageToken

func (m *ListInternalServiceResponse) GetNextPageToken() string

func (*ListInternalServiceResponse) GetServices

func (m *ListInternalServiceResponse) GetServices() []*InternalService

func (*ListInternalServiceResponse) GetTotalCount

func (m *ListInternalServiceResponse) GetTotalCount() int32

func (*ListInternalServiceResponse) ProtoMessage

func (*ListInternalServiceResponse) ProtoMessage()

func (*ListInternalServiceResponse) Reset

func (m *ListInternalServiceResponse) Reset()

func (*ListInternalServiceResponse) String

func (m *ListInternalServiceResponse) String() string

func (*ListInternalServiceResponse) Validate

func (this *ListInternalServiceResponse) Validate() error

func (*ListInternalServiceResponse) XXX_DiscardUnknown

func (m *ListInternalServiceResponse) XXX_DiscardUnknown()

func (*ListInternalServiceResponse) XXX_Marshal

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

func (*ListInternalServiceResponse) XXX_Merge

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

func (*ListInternalServiceResponse) XXX_Size

func (m *ListInternalServiceResponse) XXX_Size() int

func (*ListInternalServiceResponse) XXX_Unmarshal

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

type StartInternalServiceRequest

type StartInternalServiceRequest struct {
	ServiceName          string   `protobuf:"bytes,1,opt,name=service_name,json=serviceName,proto3" json:"service_name,omitempty"`
	PubPort              int32    `protobuf:"varint,2,opt,name=pub_port,json=pubPort,proto3" json:"pub_port,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StartInternalServiceRequest) Descriptor

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

func (*StartInternalServiceRequest) GetPubPort

func (m *StartInternalServiceRequest) GetPubPort() int32

func (*StartInternalServiceRequest) GetServiceName

func (m *StartInternalServiceRequest) GetServiceName() string

func (*StartInternalServiceRequest) ProtoMessage

func (*StartInternalServiceRequest) ProtoMessage()

func (*StartInternalServiceRequest) Reset

func (m *StartInternalServiceRequest) Reset()

func (*StartInternalServiceRequest) String

func (m *StartInternalServiceRequest) String() string

func (*StartInternalServiceRequest) Validate

func (this *StartInternalServiceRequest) Validate() error

func (*StartInternalServiceRequest) XXX_DiscardUnknown

func (m *StartInternalServiceRequest) XXX_DiscardUnknown()

func (*StartInternalServiceRequest) XXX_Marshal

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

func (*StartInternalServiceRequest) XXX_Merge

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

func (*StartInternalServiceRequest) XXX_Size

func (m *StartInternalServiceRequest) XXX_Size() int

func (*StartInternalServiceRequest) XXX_Unmarshal

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

type UnimplementedControlServiceServer

type UnimplementedControlServiceServer struct {
}

UnimplementedControlServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedControlServiceServer) CreateClient

func (*UnimplementedControlServiceServer) ListBackendServiceUsers

func (*UnimplementedControlServiceServer) ListClients

func (*UnimplementedControlServiceServer) ListInternalService

func (*UnimplementedControlServiceServer) StartInternalService

Jump to

Keyboard shortcuts

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