From af7ed5c7d9bc023182dc0dd4d27605d19168c43c Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Fri, 5 Feb 2016 00:19:41 +0000 Subject: [PATCH] linux.c (init_sys): Describe the sections of initialization code. Organization: Straylight/Edgeware From: Mark Wooding There's only one so far, but more will come. --- linux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/linux.c b/linux.c index 25fcb6c..413fcdc 100644 --- a/linux.c +++ b/linux.c @@ -457,6 +457,7 @@ done: /* Initialize the system-specific code. */ void init_sys(void) { + /* Open the NAT connection map. */ if ((natfp = fopen("/proc/net/nf_conntrack", "r")) == 0 && errno != ENOENT) { die(1, "failed to open `/proc/net/nf_conntrack' for reading: %s", -- [mdw]