You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: config-linux.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -632,7 +632,7 @@ The following parameters can be specified to set up seccomp:
632
632
If sending to this socket fails, the runtime MUST [generate an error](runtime.md#errors).
633
633
If the `SCMP_ACT_NOTIFY` action is not used this value is ignored.
634
634
635
-
The runtime sends the following file descriptors using `SCM_RIGHTS` and set their corresponding indexes in the `fdIndexes` map of the [container process state](#containerprocessstate):
635
+
The runtime sends the following file descriptors using `SCM_RIGHTS` and set their names in the `fds` array of the [container process state](#containerprocessstate):
636
636
637
637
***`seccompFd`** (int, REQUIRED) is the seccomp file descriptor returned by the seccomp syscall.
638
638
***`pidFd`** (int, OPTIONAL) is the process file descriptor (e.g as returned by `pidfd_open(2)` or by `clone(2)` with the `CLONE_PID` flag).
@@ -713,7 +713,7 @@ If more than one `sendmsg(2)` is used, the file descriptors MUST be sent only in
713
713
The container processs state includes the following properties:
714
714
715
715
***`ociVersion`** (string, REQUIRED) is version of the Open Container Initiative Runtime Specification with which the container processs state complies.
716
-
***`fdIndexes`** (map, OPTIONAL) are the indexes of the file descriptors in the `SCM_RIGHTS` array.
716
+
***`fds`** (array, OPTIONAL) is a string array containing the names of the file descriptors passed. The index of the name in this array corresponds to index of the file descriptor the `SCM_RIGHTS` array.
717
717
***`pid`** (int, REQUIRED) is the container process ID, as seen by the runtime.
0 commit comments