Juergen Gross, le mar. 11 janv. 2022 16:12:13 +0100, a ecrit:
> +static int socket_fstat(int fd, struct stat *buf)
> +{
> + buf->st_mode = S_IFSOCK | S_IRUSR | S_IWUSR;
> + buf->st_atime = buf->st_mtime = buf->st_ctime = time(NULL);
> +
> + return 0;
> +}Similarly, this seems to be missing setting st_uid, st_gid, st_size? Samuel
