blob: d96bbcea0b6655f6f1c9625e9dc5891065804247 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# lib9p/idl/2005-9P2000.u.9p - Definitions of 9P2000.u messages
#
# Copyright (C) 2024-2025 Luke T. Shumaker <lukeshu@lukeshu.com>
# SPDX-License-Identifier: AGPL-3.0-or-later
# "9P2000.u" Unix extension
# https://ericvh.github.io/9p-rfc/rfc9p2000.u.html
# https://github.com/ericvh/9p-rfc/blob/master/9p2000.u.xml
version "9P2000.u"
from ./2002-9P2000.9p import *
# numeric user ID
num nuid = 4
"NONUID = ~0"
struct stat += "file_extension[s]"
"file_owner_n_uid[nuid]"
"file_owner_n_gid[nuid]"
"file_last_modified_n_uid[nuid]"
msg Tauth += "n_uid[nuid]"
msg Tattach += "n_uid[nuid]"
msg Rerror += "errno[4]"
bitfield dm += "23=DEVICE"
"21=NAMEDPIPE"
"20=SOCKET"
"19=SETUID"
"18=SETGID"
bitfield qt += "1=SYMLINK"
|