summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--runsc/fsgofer/filter/filter.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/runsc/fsgofer/filter/filter.go b/runsc/fsgofer/filter/filter.go
index 8d4ec9c24..289886720 100644
--- a/runsc/fsgofer/filter/filter.go
+++ b/runsc/fsgofer/filter/filter.go
@@ -30,8 +30,8 @@ func Install() error {
return seccomp.Install(allowedSyscalls)
}
-// InstallUDSFilters installs the seccomp filters required to let the gofer connect
-// to a host UDS.
+// InstallUDSFilters extends the allowed syscalls to include those necessary for
+// connecting to a host UDS.
func InstallUDSFilters() {
// Add additional filters required for connecting to the host's sockets.
allowedSyscalls.Merge(udsSyscalls)