const _ … type ProxyServiceClient … type proxyServiceClient … func NewProxyServiceClient(cc grpc.ClientConnInterface) ProxyServiceClient { … } func (c *proxyServiceClient) Proxy(ctx context.Context, opts ...grpc.CallOption) (ProxyService_ProxyClient, error) { … } type ProxyService_ProxyClient … type proxyServiceProxyClient … func (x *proxyServiceProxyClient) Send(m *Packet) error { … } func (x *proxyServiceProxyClient) Recv() (*Packet, error) { … } type ProxyServiceServer … type UnimplementedProxyServiceServer … func (UnimplementedProxyServiceServer) Proxy(ProxyService_ProxyServer) error { … } type UnsafeProxyServiceServer … func RegisterProxyServiceServer(s grpc.ServiceRegistrar, srv ProxyServiceServer) { … } func _ProxyService_Proxy_Handler(srv interface{ … } type ProxyService_ProxyServer … type proxyServiceProxyServer … func (x *proxyServiceProxyServer) Send(m *Packet) error { … } func (x *proxyServiceProxyServer) Recv() (*Packet, error) { … } var ProxyService_ServiceDesc …