From 08b8eb82f54325faf2f86806c6ab4f40e9fc0af1 Mon Sep 17 00:00:00 2001 From: Peter Kurfer Date: Mon, 15 Feb 2021 08:51:54 +0100 Subject: [PATCH] Merge subtree --- proto/audit/details/dns_details.proto | 1 + proto/audit/details/http_details.proto | 3 ++- proto/audit/event_entity.proto | 3 ++- proto/rpc/audit.proto | 5 +++-- proto/rpc/health.proto | 3 ++- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/proto/audit/details/dns_details.proto b/proto/audit/details/dns_details.proto index 3dc2fb8..f820840 100644 --- a/proto/audit/details/dns_details.proto +++ b/proto/audit/details/dns_details.proto @@ -4,6 +4,7 @@ option go_package = "gitlab.com/inetmock/inetmock/pkg/audit/details"; option java_multiple_files = true; option java_package = "com.github.baez90.inetmock.audit.details"; option java_outer_classname = "HandlerEventProto"; +option csharp_namespace = "INetMock.Client.Audit.Details"; package inetmock.audit.details; diff --git a/proto/audit/details/http_details.proto b/proto/audit/details/http_details.proto index e9a3955..e5e5d7a 100644 --- a/proto/audit/details/http_details.proto +++ b/proto/audit/details/http_details.proto @@ -4,6 +4,7 @@ option go_package = "gitlab.com/inetmock/inetmock/pkg/audit/details"; option java_multiple_files = true; option java_package = "com.github.baez90.inetmock.audit.details"; option java_outer_classname = "HandlerEventProto"; +option csharp_namespace = "INetMock.Client.Audit.Details"; package inetmock.audit.details; @@ -29,4 +30,4 @@ message HTTPDetailsEntity { string uri = 3; string proto = 4; map headers = 5; -} \ No newline at end of file +} diff --git a/proto/audit/event_entity.proto b/proto/audit/event_entity.proto index 00492af..3b213ee 100644 --- a/proto/audit/event_entity.proto +++ b/proto/audit/event_entity.proto @@ -4,6 +4,7 @@ option go_package = "gitlab.com/inetmock/inetmock/pkg/audit"; option java_multiple_files = true; option java_package = "com.github.baez90.inetmock.audit"; option java_outer_classname = "HandlerEventProto"; +option csharp_namespace = "INetMock.Client.Audit"; package inetmock.audit; @@ -48,4 +49,4 @@ message EventEntity { uint32 destinationPort = 8; TLSDetailsEntity tls = 9; google.protobuf.Any protocolDetails = 10; -} \ No newline at end of file +} diff --git a/proto/rpc/audit.proto b/proto/rpc/audit.proto index 1d43bd3..ca369c1 100644 --- a/proto/rpc/audit.proto +++ b/proto/rpc/audit.proto @@ -4,8 +4,9 @@ option go_package = "gitlab.com/inetmock/inetmock/pkg/rpc"; option java_multiple_files = true; option java_package = "com.github.baez90.inetmock.rpc"; option java_outer_classname = "AuditProto"; +option csharp_namespace = "INetMock.Client.Rpc"; -import 'pkg/audit/event_entity.proto'; +import 'proto/audit/event_entity.proto'; package inetmock.rpc; @@ -49,4 +50,4 @@ service Audit { rpc RegisterFileSink (RegisterFileSinkRequest) returns (RegisterFileSinkResponse); rpc RemoveFileSink (RemoveFileSinkRequest) returns (RemoveFileSinkResponse); rpc ListSinks(ListSinksRequest) returns (ListSinksResponse); -} \ No newline at end of file +} diff --git a/proto/rpc/health.proto b/proto/rpc/health.proto index 3ff1aee..193bc8c 100644 --- a/proto/rpc/health.proto +++ b/proto/rpc/health.proto @@ -4,6 +4,7 @@ option go_package = "gitlab.com/inetmock/inetmock/internal/rpc"; option java_multiple_files = true; option java_package = "com.github.baez90.inetmock.rpc"; option java_outer_classname = "HealthProto"; +option csharp_namespace = "INetMock.Client.Rpc"; package inetmock.rpc; @@ -31,4 +32,4 @@ message ComponentHealth { message HealthResponse { HealthState overallHealthState = 1; map componentsHealth = 2; -} \ No newline at end of file +}