aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/tools/network-tools.h
diff options
context:
space:
mode:
authorGravatar Ming Zhao <mzhao@luminatewireless.com>2015-10-07 14:06:20 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-10-08 12:11:17 +0000
commit1940933a4191846f9349ecd45976dff3cab976d6 (patch)
tree1d3ac628ffe66bd963e75d2e1ace23f1b6dc67e8 /src/main/tools/network-tools.h
parentfdc46c9d1c731b76a8b61393d36cf3ee9edad46d (diff)
Introduce two new options to Linux sandbox wrapper:
* -n: Create a new network namespace with only loopback interface. * -r: set the uid/gid inside the sandbox to be root (instead of nobody) so that setuid programs like ping can still run when needed. -- Change-Id: I8ab434e47e0f6933ee9de02e135c8daec39fe73f Reviewed-on: https://bazel-review.googlesource.com/#/c/2101/ MOS_MIGRATED_REVID=104858163
Diffstat (limited to 'src/main/tools/network-tools.h')
-rw-r--r--src/main/tools/network-tools.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/main/tools/network-tools.h b/src/main/tools/network-tools.h
new file mode 100644
index 0000000000..9c90aabb25
--- /dev/null
+++ b/src/main/tools/network-tools.h
@@ -0,0 +1,21 @@
+// Copyright 2015 The Bazel Authors. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+#ifndef NETWORK_TOOLS_H__
+#define NETWORK_TOOLS_H__
+
+// Bring up the given network interface like "lo".
+void BringupInterface(const char *name);
+
+#endif // NETWORK_TOOLS_H__