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 015128e commit f014a7b
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 @@ -18,7 +18,7 @@ enum
{
kMaxPacketSize = (65536 * 1),
kMaxRecvBeforeAck = (1 << 18) - 1,
kMaxSendBeforeAck = (1 << 18)
kMaxSendBeforeAck = (1 << 20)
};

typedef struct protobuf_client_state_s
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 @@ -20,7 +20,7 @@ enum
{
kMaxPacketSize = (65536 * 1),
kMaxRecvBeforeAck = (1 << 18) - 1,
kMaxSendBeforeAck = (1 << 18)
kMaxSendBeforeAck = (1 << 20)
};

typedef struct protobuf_server_state_s
Expand Down

0 comments on commit f014a7b

Please sign in to comment.