Module Name: src
Committed By: christos
Date: Fri Mar 11 17:16:40 UTC 2016
Modified Files:
src/external/bsd/blacklist/bin: blacklistd.8
src/external/bsd/blacklist/include: bl.h
Log Message:
Give the blacklistd socket a more meaningful name.
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/external/bsd/blacklist/bin/blacklistd.8
cvs rdiff -u -r1.12 -r1.13 src/external/bsd/blacklist/include/bl.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/blacklist/bin/blacklistd.8
diff -u src/external/bsd/blacklist/bin/blacklistd.8:1.14 src/external/bsd/blacklist/bin/blacklistd.8:1.15
--- src/external/bsd/blacklist/bin/blacklistd.8:1.14 Thu Jun 4 12:11:48 2015
+++ src/external/bsd/blacklist/bin/blacklistd.8 Fri Mar 11 12:16:40 2016
@@ -1,4 +1,4 @@
-.\" $NetBSD: blacklistd.8,v 1.14 2015/06/04 16:11:48 wiz Exp $
+.\" $NetBSD: blacklistd.8,v 1.15 2016/03/11 17:16:40 christos Exp $
.\"
.\" Copyright (c) 2015 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -55,7 +55,7 @@ If no such file is specified, then it on
specified by
.Ar sockspath
or if that is not specified to
-.Pa /var/run/blsock .
+.Pa /var/run/blacklistd.sock .
Each notification contains an (action, port, protocol, address, owner) tuple
that identifies the remote connection and the action.
This tuple is consulted against entries in
@@ -206,7 +206,7 @@ Shell script invoked to interface with t
Configuration file.
.It Pa /var/db/blacklistd.db
Database of current connection entries.
-.It Pa /var/run/blsock
+.It Pa /var/run/blacklistd.sock
Socket to receive connection notifications.
.El
.Sh SEE ALSO
Index: src/external/bsd/blacklist/include/bl.h
diff -u src/external/bsd/blacklist/include/bl.h:1.12 src/external/bsd/blacklist/include/bl.h:1.13
--- src/external/bsd/blacklist/include/bl.h:1.12 Thu Jan 22 11:19:53 2015
+++ src/external/bsd/blacklist/include/bl.h Fri Mar 11 12:16:40 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: bl.h,v 1.12 2015/01/22 16:19:53 christos Exp $ */
+/* $NetBSD: bl.h,v 1.13 2016/03/11 17:16:40 christos Exp $ */
/*-
* Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -56,7 +56,7 @@ typedef struct {
#define bi_cred bi_u._bi_cred
#ifndef _PATH_BLSOCK
-#define _PATH_BLSOCK "/var/run/blsock"
+#define _PATH_BLSOCK "/var/run/blacklistd.sock"
#endif
__BEGIN_DECLS