mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
3.9 KiB
109 lines
3.9 KiB
// Code generated by protoc-gen-go-grpc. DO NOT EDIT. |
|
// versions: |
|
// - protoc-gen-go-grpc v1.3.0 |
|
// - protoc v5.27.0 |
|
// source: app/log/command/config.proto |
|
|
|
package command |
|
|
|
import ( |
|
context "context" |
|
grpc "google.golang.org/grpc" |
|
codes "google.golang.org/grpc/codes" |
|
status "google.golang.org/grpc/status" |
|
) |
|
|
|
// This is a compile-time assertion to ensure that this generated file |
|
// is compatible with the grpc package it is being compiled against. |
|
// Requires gRPC-Go v1.32.0 or later. |
|
const _ = grpc.SupportPackageIsVersion7 |
|
|
|
const ( |
|
LoggerService_RestartLogger_FullMethodName = "/xray.app.log.command.LoggerService/RestartLogger" |
|
) |
|
|
|
// LoggerServiceClient is the client API for LoggerService service. |
|
// |
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. |
|
type LoggerServiceClient interface { |
|
RestartLogger(ctx context.Context, in *RestartLoggerRequest, opts ...grpc.CallOption) (*RestartLoggerResponse, error) |
|
} |
|
|
|
type loggerServiceClient struct { |
|
cc grpc.ClientConnInterface |
|
} |
|
|
|
func NewLoggerServiceClient(cc grpc.ClientConnInterface) LoggerServiceClient { |
|
return &loggerServiceClient{cc} |
|
} |
|
|
|
func (c *loggerServiceClient) RestartLogger(ctx context.Context, in *RestartLoggerRequest, opts ...grpc.CallOption) (*RestartLoggerResponse, error) { |
|
out := new(RestartLoggerResponse) |
|
err := c.cc.Invoke(ctx, LoggerService_RestartLogger_FullMethodName, in, out, opts...) |
|
if err != nil { |
|
return nil, err |
|
} |
|
return out, nil |
|
} |
|
|
|
// LoggerServiceServer is the server API for LoggerService service. |
|
// All implementations must embed UnimplementedLoggerServiceServer |
|
// for forward compatibility |
|
type LoggerServiceServer interface { |
|
RestartLogger(context.Context, *RestartLoggerRequest) (*RestartLoggerResponse, error) |
|
mustEmbedUnimplementedLoggerServiceServer() |
|
} |
|
|
|
// UnimplementedLoggerServiceServer must be embedded to have forward compatible implementations. |
|
type UnimplementedLoggerServiceServer struct { |
|
} |
|
|
|
func (UnimplementedLoggerServiceServer) RestartLogger(context.Context, *RestartLoggerRequest) (*RestartLoggerResponse, error) { |
|
return nil, status.Errorf(codes.Unimplemented, "method RestartLogger not implemented") |
|
} |
|
func (UnimplementedLoggerServiceServer) mustEmbedUnimplementedLoggerServiceServer() {} |
|
|
|
// UnsafeLoggerServiceServer may be embedded to opt out of forward compatibility for this service. |
|
// Use of this interface is not recommended, as added methods to LoggerServiceServer will |
|
// result in compilation errors. |
|
type UnsafeLoggerServiceServer interface { |
|
mustEmbedUnimplementedLoggerServiceServer() |
|
} |
|
|
|
func RegisterLoggerServiceServer(s grpc.ServiceRegistrar, srv LoggerServiceServer) { |
|
s.RegisterService(&LoggerService_ServiceDesc, srv) |
|
} |
|
|
|
func _LoggerService_RestartLogger_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
|
in := new(RestartLoggerRequest) |
|
if err := dec(in); err != nil { |
|
return nil, err |
|
} |
|
if interceptor == nil { |
|
return srv.(LoggerServiceServer).RestartLogger(ctx, in) |
|
} |
|
info := &grpc.UnaryServerInfo{ |
|
Server: srv, |
|
FullMethod: LoggerService_RestartLogger_FullMethodName, |
|
} |
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) { |
|
return srv.(LoggerServiceServer).RestartLogger(ctx, req.(*RestartLoggerRequest)) |
|
} |
|
return interceptor(ctx, in, info, handler) |
|
} |
|
|
|
// LoggerService_ServiceDesc is the grpc.ServiceDesc for LoggerService service. |
|
// It's only intended for direct use with grpc.RegisterService, |
|
// and not to be introspected or modified (even as a copy) |
|
var LoggerService_ServiceDesc = grpc.ServiceDesc{ |
|
ServiceName: "xray.app.log.command.LoggerService", |
|
HandlerType: (*LoggerServiceServer)(nil), |
|
Methods: []grpc.MethodDesc{ |
|
{ |
|
MethodName: "RestartLogger", |
|
Handler: _LoggerService_RestartLogger_Handler, |
|
}, |
|
}, |
|
Streams: []grpc.StreamDesc{}, |
|
Metadata: "app/log/command/config.proto", |
|
}
|
|
|