Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
radkesvat committed Jul 15, 2024
1 parent a55e1c4 commit e2e0f2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tunnels/client/protobuf/protobuf_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
enum
{
kMaxPacketSize = (65536 * 1),
kMaxRecvBeforeAck = (1 << 14),
kMaxRecvBeforeAck = (1 << 16),
kMaxSendBeforeAck = (1 << 17)
};

Expand Down
2 changes: 1 addition & 1 deletion tunnels/server/protobuf/protobuf_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
enum
{
kMaxPacketSize = (65536 * 1),
kMaxRecvBeforeAck = (1 << 14),
kMaxRecvBeforeAck = (1 << 16),
kMaxSendBeforeAck = (1 << 17)
};

Expand Down

0 comments on commit e2e0f2c

Please sign in to comment.