Commit dfb73b05 authored by Brandon Schlinker's avatar Brandon Schlinker Committed by Facebook GitHub Bot

Disable all options by default

Summary: Extra lookup options should be disabled by default to ensure that things that need them explicitly enable them.

Differential Revision: D29255973

fbshipit-source-id: 5c92ad8685cb2f490aebd55a837a1463a624be97
parent f1d5088b
...@@ -34,10 +34,10 @@ namespace tcpinfo { ...@@ -34,10 +34,10 @@ namespace tcpinfo {
struct LookupOptions { struct LookupOptions {
// On supported platforms, whether to fetch the name of the congestion // On supported platforms, whether to fetch the name of the congestion
// control algorithm and any information exposed via TCP_CC_INFO. // control algorithm and any information exposed via TCP_CC_INFO.
bool getCcInfo{true}; bool getCcInfo{false};
// On supported platforms, whether to fetch socket buffer utilization. // On supported platforms, whether to fetch socket buffer utilization.
bool getMemInfo{true}; bool getMemInfo{false};
}; };
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment