8 Feb
2023
8 Feb
'23
10:14 p.m.
Any insight into the best way to get the protocol inside `try_send`, presently I'm using `getSockOpt` as follows: ```c opt_err = getsockopt(fd, SOL_SOCKET, SO_TYPE, &protocol, &opt_len); if (!opt_err && protocol == SOCK_DGRAM && is_port0(&unix_addr)) ``` This causes other tests to completely freeze up. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2100#note_23527