diff options
author | Robert Tonic <btonic@users.noreply.github.com> | 2019-09-19 17:44:46 -0400 |
---|---|---|
committer | Robert Tonic <btonic@users.noreply.github.com> | 2019-09-19 17:44:46 -0400 |
commit | e975184bc50944e82a6bf5f4c57bbe970933fdc5 (patch) | |
tree | ed7017e041fd91e29700fb2b68bc4b38b6b51ff9 /runsc/fsgofer | |
parent | 46beb919121f02d8bd110a54fb8f6de5dfd2891e (diff) |
Update InstallUDSFilters documentation to be accurate to functionality.
Diffstat (limited to 'runsc/fsgofer')
-rw-r--r-- | runsc/fsgofer/filter/filter.go | 4 |
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) |