| 1668 | } |
| 1669 | |
| 1670 | static bool posix_socket_inode_equal(const posix_socket_identity_t *left, |
| 1671 | const posix_socket_identity_t *right) { |
| 1672 | return left && right && left->device == right->device && left->inode == right->inode; |
| 1673 | } |
| 1674 | |
| 1675 | static bool posix_socket_status_secure_links(const struct stat *status, nlink_t links) { |
| 1676 | return status && S_ISSOCK(status->st_mode) && status->st_uid == geteuid() && |
no outgoing calls
no test coverage detected