v1.5.1 增强程序稳定性

This commit is contained in:
robin
2026-03-22 17:37:40 +08:00
parent afbaaa869c
commit 17e182b413
652 changed files with 22949 additions and 34397 deletions

View File

@@ -1,7 +1,7 @@
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.5.1
// - protoc v6.33.2
// - protoc-gen-go-grpc v1.6.1
// - protoc v3.19.6
// source: service_user_node.proto
package pb
@@ -218,37 +218,37 @@ type UserNodeServiceServer interface {
type UnimplementedUserNodeServiceServer struct{}
func (UnimplementedUserNodeServiceServer) CreateUserNode(context.Context, *CreateUserNodeRequest) (*CreateUserNodeResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateUserNode not implemented")
return nil, status.Error(codes.Unimplemented, "method CreateUserNode not implemented")
}
func (UnimplementedUserNodeServiceServer) UpdateUserNode(context.Context, *UpdateUserNodeRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserNode not implemented")
return nil, status.Error(codes.Unimplemented, "method UpdateUserNode not implemented")
}
func (UnimplementedUserNodeServiceServer) DeleteUserNode(context.Context, *DeleteUserNodeRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteUserNode not implemented")
return nil, status.Error(codes.Unimplemented, "method DeleteUserNode not implemented")
}
func (UnimplementedUserNodeServiceServer) FindAllEnabledUserNodes(context.Context, *FindAllEnabledUserNodesRequest) (*FindAllEnabledUserNodesResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method FindAllEnabledUserNodes not implemented")
return nil, status.Error(codes.Unimplemented, "method FindAllEnabledUserNodes not implemented")
}
func (UnimplementedUserNodeServiceServer) CountAllEnabledUserNodes(context.Context, *CountAllEnabledUserNodesRequest) (*RPCCountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CountAllEnabledUserNodes not implemented")
return nil, status.Error(codes.Unimplemented, "method CountAllEnabledUserNodes not implemented")
}
func (UnimplementedUserNodeServiceServer) ListEnabledUserNodes(context.Context, *ListEnabledUserNodesRequest) (*ListEnabledUserNodesResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ListEnabledUserNodes not implemented")
return nil, status.Error(codes.Unimplemented, "method ListEnabledUserNodes not implemented")
}
func (UnimplementedUserNodeServiceServer) FindEnabledUserNode(context.Context, *FindEnabledUserNodeRequest) (*FindEnabledUserNodeResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method FindEnabledUserNode not implemented")
return nil, status.Error(codes.Unimplemented, "method FindEnabledUserNode not implemented")
}
func (UnimplementedUserNodeServiceServer) FindCurrentUserNode(context.Context, *FindCurrentUserNodeRequest) (*FindCurrentUserNodeResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method FindCurrentUserNode not implemented")
return nil, status.Error(codes.Unimplemented, "method FindCurrentUserNode not implemented")
}
func (UnimplementedUserNodeServiceServer) UpdateUserNodeStatus(context.Context, *UpdateUserNodeStatusRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserNodeStatus not implemented")
return nil, status.Error(codes.Unimplemented, "method UpdateUserNodeStatus not implemented")
}
func (UnimplementedUserNodeServiceServer) CountAllEnabledUserNodesWithSSLCertId(context.Context, *CountAllEnabledUserNodesWithSSLCertIdRequest) (*RPCCountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CountAllEnabledUserNodesWithSSLCertId not implemented")
return nil, status.Error(codes.Unimplemented, "method CountAllEnabledUserNodesWithSSLCertId not implemented")
}
func (UnimplementedUserNodeServiceServer) FindUserNodeAccessAddr(context.Context, *FindUserNodeAccessAddrRequest) (*FindUserNodeAccessAddrResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method FindUserNodeAccessAddr not implemented")
return nil, status.Error(codes.Unimplemented, "method FindUserNodeAccessAddr not implemented")
}
func (UnimplementedUserNodeServiceServer) testEmbeddedByValue() {}
@@ -260,7 +260,7 @@ type UnsafeUserNodeServiceServer interface {
}
func RegisterUserNodeServiceServer(s grpc.ServiceRegistrar, srv UserNodeServiceServer) {
// If the following call pancis, it indicates UnimplementedUserNodeServiceServer was
// If the following call panics, it indicates UnimplementedUserNodeServiceServer was
// embedded by pointer and is nil. This will cause panics if an
// unimplemented method is ever invoked, so we test this at initialization
// time to prevent it from happening at runtime later due to I/O.