mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
linux-user: support SO_PASSSEC setsockopt option
Translate the SO_PASSSEC option to setsockopt to the host value & perform the syscall as expected, allowing use of the option by target programs. Signed-off-by: Paul Burton <paul@archlinuxmips.org> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
This commit is contained in:
parent
d79b6cc435
commit
82d0fe6b7a
2 changed files with 8 additions and 0 deletions
|
@ -1531,6 +1531,9 @@ set_timeout:
|
|||
case TARGET_SO_PASSCRED:
|
||||
optname = SO_PASSCRED;
|
||||
break;
|
||||
case TARGET_SO_PASSSEC:
|
||||
optname = SO_PASSSEC;
|
||||
break;
|
||||
case TARGET_SO_TIMESTAMP:
|
||||
optname = SO_TIMESTAMP;
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue