From b17c5726f6dc911ac0d4c9be02c2a0d9a7dee393 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 28 Dec 2015 19:11:03 +0100 Subject: sys: support for AF_UNIX sockets --- sysgen/sysgen.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sysgen') diff --git a/sysgen/sysgen.go b/sysgen/sysgen.go index 968f980a5..14ecd51fa 100644 --- a/sysgen/sysgen.go +++ b/sysgen/sysgen.go @@ -395,6 +395,8 @@ func fmtFdKind(s string) string { return "FdBtCmtp" case "bt_bnep": return "FdBtBnep" + case "unix": + return "FdUnix" default: failf("bad fd type %v", s) return "" -- cgit mrf-deployment