From 5a093b74f6098caf00949dcf2c2ba4c2cd9ff255 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 31 Aug 2017 14:07:37 +0200 Subject: 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. --- sys/socket_inet6.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/socket_inet6.txt') 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 -- cgit mrf-deployment