From b37b65b0e69a4d22551aa6a207856ad7b3801e69 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 26 Feb 2018 16:48:31 +0100 Subject: sys/linux: remove proc type from network descriptions We now always create net namespace for testing, so socket ports and other IDs do not overlap between different test processes. Proc types play badly with squashing packets to ANYBLOB. To squash into a block we need concrete value, but it depends on process id. Removing proc also makes tun setup and address descriptions simpler. --- sys/linux/socket_unix.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/linux/socket_unix.txt') diff --git a/sys/linux/socket_unix.txt b/sys/linux/socket_unix.txt index 5dfe049ca..8ad434833 100644 --- a/sys/linux/socket_unix.txt +++ b/sys/linux/socket_unix.txt @@ -43,7 +43,7 @@ sockaddr_un_file { sockaddr_un_abstract { family flags[unix_socket_family, int16] ind const[0, int8] - id proc[20000, 4, int32] + id int32[20000:20004] } msghdr_un { -- cgit mrf-deployment