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 e2e0f2c commit 015128e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tunnels/client/protobuf/protobuf_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
enum
{
kMaxPacketSize = (65536 * 1),
kMaxRecvBeforeAck = (1 << 16),
kMaxSendBeforeAck = (1 << 17)
kMaxRecvBeforeAck = (1 << 18) - 1,
kMaxSendBeforeAck = (1 << 18)
};

typedef struct protobuf_client_state_s
Expand Down
4 changes: 2 additions & 2 deletions tunnels/server/protobuf/protobuf_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
enum
{
kMaxPacketSize = (65536 * 1),
kMaxRecvBeforeAck = (1 << 16),
kMaxSendBeforeAck = (1 << 17)
kMaxRecvBeforeAck = (1 << 18) - 1,
kMaxSendBeforeAck = (1 << 18)
};

typedef struct protobuf_server_state_s
Expand Down

0 comments on commit 015128e

Please sign in to comment.