Skip to content

Commit

Permalink
Move protos into internal package (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmehta19 authored Sep 30, 2024
1 parent a9c639a commit 7dc7255
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion grpc/gcp/s2a/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package grpc.gcp.s2a;

option java_multiple_files = true;
option java_outer_classname = "CommonProto";
option java_package = "io.grpc.s2a.handshaker";
option java_package = "io.grpc.s2a.internal.handshaker";

// The TLS 1.0-1.2 ciphersuites that the application can negotiate when using
// S2A.
Expand Down
2 changes: 1 addition & 1 deletion grpc/gcp/s2a/s2a.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import "grpc/gcp/s2a/s2a_context.proto";

option java_multiple_files = true;
option java_outer_classname = "S2AProto";
option java_package = "io.grpc.s2a.handshaker";
option java_package = "io.grpc.s2a.internal.handshaker";

enum SignatureAlgorithm {
S2A_SSL_SIGN_UNSPECIFIED = 0;
Expand Down
2 changes: 1 addition & 1 deletion grpc/gcp/s2a/s2a_context.proto
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import "grpc/gcp/s2a/common.proto";

option java_multiple_files = true;
option java_outer_classname = "S2AContextProto";
option java_package = "io.grpc.s2a.handshaker";
option java_package = "io.grpc.s2a.internal.handshaker";

message S2AContext {
reserved 5, 7, 8;
Expand Down

0 comments on commit 7dc7255

Please sign in to comment.