Skip to content

configuration: add ManifestPassthrough.so_rcvbuf #381

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -1049,6 +1049,18 @@ It works on both _pie_ and _no-pie_ programs, and also works with _aslr_.
}
```

#### so_rcvbuf {#manifestpassthrough.so_rcvbuf}
This is an optional configuration setting used to manage the size (in bytes) of the socket receive buffer.
The default buffer size is _208 KB_, so to change the size to, say, _512 KB_, you could use the following config:

```json
{
"ManifestPassthrough": {
"so_rcvbuf": "524288"
}
}
```

### Debugflags {#debugflags}
`Debugflags` adds additional debug flags to the runtime.

Expand Down