diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-08-31 14:07:37 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-08-31 14:31:21 +0200 |
| commit | 5a093b74f6098caf00949dcf2c2ba4c2cd9ff255 (patch) | |
| tree | 61e6ae8267c6c1b2392718f86202e1a910cd7754 /sys/socket_inet6.txt | |
| parent | ed7f95981b04a44475fcc1262ea16ea7bddc8136 (diff) | |
sys: change proc arguments to the format used by const/flags/len
All other types have optional underlying type as the last argument.
Proc have it as first. This creates very irregular syntax and
complicates parsing. Make type the last argument.
Note: this is a breaking change if you have descriptions on the side.
Diffstat (limited to 'sys/socket_inet6.txt')
| -rw-r--r-- | sys/socket_inet6.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/socket_inet6.txt b/sys/socket_inet6.txt index 27e058657..9ca63a973 100644 --- a/sys/socket_inet6.txt +++ b/sys/socket_inet6.txt @@ -20,7 +20,7 @@ sock_in6_pair { sockaddr_in6 { family const[AF_INET6, int16] - port proc[int16be, 20000, 4] + port proc[20000, 4, int16be] flow int32 addr ipv6_addr scope int32 |
