aboutsummaryrefslogtreecommitdiff
path: root/src/or/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/or/main.c')
-rw-r--r--src/or/main.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/or/main.c b/src/or/main.c
index 861f586c9..af05f0b71 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -2639,6 +2639,15 @@ find_flashcard_path(PWCHAR path, size_t size)
}
#endif
+static void
+init_addrinfo(void) {
+ char hname[256];
+
+ // host name to sandbox
+ gethostname(hname, sizeof(hname));
+ sandbox_add_addrinfo(hname);
+}
+
static sandbox_cfg_t*
sandbox_init_filter()
{
@@ -2713,6 +2722,8 @@ sandbox_init_filter()
sandbox_cfg_allow_execve(&cfg, "/usr/local/bin/tor");
+ init_addrinfo();
+
return cfg;
}