Skip to content
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

Increase client RECV_BUFF size to 1 MB #548

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@
Changelog
=========

unreleased
==========
* Increase client RECV_BUFF to 1 MB.

20230710
========

* Update vcpkg ref of build to 2023-02-24
*

ouster_osf
----------
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ include(VcpkgEnv)
project(ouster_example VERSION 20230710)

# generate version header
set(OusterSDK_VERSION_STRING 0.9.0)
set(OusterSDK_VERSION_STRING 0.9.1)
include(VersionGen)

# ==== Options ====
Expand Down
2 changes: 1 addition & 1 deletion ouster_client/src/client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Json::Value to_json(const sensor_config& config);
namespace {

// default udp receive buffer size on windows is very low -- use 256K
const int RCVBUF_SIZE = 256 * 1024;
const int RCVBUF_SIZE = 1024 * 1024;

int32_t get_sock_port(SOCKET sock_fd) {
struct sockaddr_storage ss;
Expand Down