libbrillo: remove SetReceiveBufferSize from UdevMonitor

The default size of the socket receive buffer is a few hundred
KB and I don't think any users of this library are going to want
to change it, but it is easy to misuse by setting to a value
which is too low. Let's remove it for now and we can always add
it back in later if we need to.

BUG=chromium:986484
TEST=libbrillo and mist unit tests

Change-Id: I371b9ac05062285215bc7aa3adc69aae9baf3440
Reviewed-on: https://chromium-review.googlesource.com/1716776
Tested-by: Eric Caruso <ejcaruso@chromium.org>
Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com>
Legacy-Commit-Queue: Commit Bot <commit-bot@chromium.org>
Reviewed-by: Anand Mistry <amistry@chromium.org>
Cr-Mirrored-From: https://chromium.googlesource.com/chromiumos/platform2
Cr-Mirrored-Commit: ec7176525a9f37e566a4a34b09c2e25f4ef4ee9a
3 files changed
tree: 4b80422820126f624c7d1603e0b4e93094158240
  1. brillo/
  2. install_attributes/
  3. policy/
  4. BUILD.gn
  5. libpolicy.ver
  6. OWNERS
  7. PRESUBMIT.cfg
  8. README.md
  9. testrunner.cc
README.md

libbrillo: platform utility library

libbrillo is a shared library meant to hold common utility code that we deem useful for platform projects. It supplements the functionality provided by libbase/libchrome since that project, by design, only holds functionality that Chromium (the browser) needs. As a result, this tends to be more OS-centric code.

AOSP Usage

This project is also used by Update Engine which is maintained in AOSP. However, AOSP doesn't use this codebase directly, it maintains its own libbrillo fork.

To help keep the projects in sync, we have a gsubtree set up on our GoB: https://chromium.googlesource.com/chromiumos/platform2/libbrillo/

This allows AOSP to cherry pick or merge changes directly back into their fork.