View | Details | Raw Unified | Return to bug 271249
Collapse All | Expand All

(-)b/net-mgmt/yaf/Makefile (-1 / +3 lines)
Lines 1-5 Link Here
1
PORTNAME=	yaf
1
PORTNAME=	yaf
2
PORTVERSION=	2.11.0
2
PORTVERSION=	2.13.0
3
CATEGORIES=	net-mgmt
3
CATEGORIES=	net-mgmt
4
MASTER_SITES=	http://tools.netsa.cert.org/releases/
4
MASTER_SITES=	http://tools.netsa.cert.org/releases/
5
5
Lines 65-70 NONIP_IMPLIES= MPLS Link Here
65
.if defined(WITH_DAG)
65
.if defined(WITH_DAG)
66
CONFIGURE_ARGS+=	--with-dag=${LOCALBASE}
66
CONFIGURE_ARGS+=	--with-dag=${LOCALBASE}
67
.endif
67
.endif
68
EXTRA_PATCHES+=	${FILESDIR}/extra-patch-SIGINFO:-p1 \
69
		${FILESDIR}/extra-patch-ip6tunnel:-p1
68
70
69
post-install:
71
post-install:
70
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/yaf
72
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/yaf
(-)b/net-mgmt/yaf/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1559120538
1
TIMESTAMP = 1683232182
2
SHA256 (yaf-2.11.0.tar.gz) = 5e2523eeeaa5ac7e08f73b38c599f321ba93f239011efec9c39cfcbc30489dca
2
SHA256 (yaf-2.13.0.tar.gz) = a4c0a7cec4b3e78cde7a9bcd051e3e6bcb88c671494745ac506f1843756a61a3
3
SIZE (yaf-2.11.0.tar.gz) = 2132776
3
SIZE (yaf-2.13.0.tar.gz) = 2198696
(-)b/net-mgmt/yaf/files/extra-patch-SIGINFO (+52 lines)
Added Link Here
1
diff -ru2 yaf-2.8.0-orig/src/yaf.pod yaf-2.8.0/src/yaf.pod
2
--- yaf-2.8.0-orig/src/yaf.pod	2015-12-22 13:59:04.000000000 -0500
3
+++ yaf-2.8.0/src/yaf.pod	2016-02-12 15:54:41.050468466 -0500
4
@@ -1501,5 +1501,6 @@
5
 B<yaf> responds to B<SIGINT> or B<SIGTERM> by terminating input processing,
6
 flushing any pending flows to the current output, and exiting. If B<--verbose>
7
-is given, B<yaf> responds to B<SIGUSR1> by printing present flow and fragment table
8
+is given, B<yaf> responds to B<SIGUSR1> (and B<SIGINFO> where available)
9
+by printing present flow and fragment table
10
 statistics to its log.  All other signals are handled by the C runtimes in
11
 the default manner on the platform on which B<yaf> is currently operating.
12
@@ -1593,5 +1594,5 @@
13
 When running B<yaf> with --live=pfring or --live=zc, the call to receive
14
 packets is blocking so B<yaf> will not export statistics messages or
15
-respond to SIGUSR1 signals unless it is receiving data.
16
+respond to B<SIGUSR1>/B<SIGINFO> signals unless it is receiving data.
17
 
18
 Presently, the B<destinationTransportPort> information element contains
19
diff -ru2 yaf-2.8.0-orig/src/yafstat.c yaf-2.8.0/src/yafstat.c
20
--- yaf-2.8.0-orig/src/yafstat.c	2015-10-22 15:08:57.000000000 -0400
21
+++ yaf-2.8.0/src/yafstat.c	2016-02-12 15:52:54.083248573 -0500
22
@@ -76,5 +76,5 @@
23
 #endif
24
 
25
-static uint32_t     yaf_do_stat = 0;
26
+static volatile sig_atomic_t yaf_do_stat = 0;
27
 static GTimer      *yaf_fft = NULL;
28
 static yfContext_t *statctx = NULL;
29
@@ -82,5 +82,5 @@
30
 static void yfSigUsr1()
31
 {
32
-    ++yaf_do_stat;
33
+    yaf_do_stat = 1;
34
 }
35
 
36
@@ -97,4 +97,9 @@
37
         g_error("sigaction(SIGUSR1) failed: %s", strerror(errno));
38
     }
39
+#ifdef SIGINFO
40
+    if (sigaction(SIGINFO,&sa,&osa)) {
41
+        g_error("sigaction(SIGINFO) failed: %s", strerror(errno));
42
+    }
43
+#endif /* SIGINFO */
44
 
45
     /* stash statistics context */
46
@@ -137,5 +142,5 @@
47
 {
48
     if (yaf_do_stat) {
49
-        --yaf_do_stat;
50
+        yaf_do_stat = 0;
51
         yfStatDump();
52
     }
(-)b/net-mgmt/yaf/files/extra-patch-ip6tunnel (+24 lines)
Added Link Here
1
diff -ru2 yaf-2.8.0-orig/include/yaf/decode.h yaf-2.8.0/include/yaf/decode.h
2
--- yaf-2.8.0-orig/include/yaf/decode.h	2015-10-22 15:08:57.000000000 -0400
3
+++ yaf-2.8.0/include/yaf/decode.h	2016-02-12 17:04:28.275950268 -0500
4
@@ -218,4 +218,6 @@
5
 /** IPv4 Protocol Identifier and IPv6 Next Header for UDP */
6
 #define YF_PROTO_UDP        17
7
+/** IPv4 Protocol Identifier for tunneled IPv6 */
8
+#define YF_PROTO_TUNNEL_IP6 41
9
 /** IPv6 Next Header for Routing Options */
10
 #define YF_PROTO_IP6_ROUTE  43
11
diff -ru2 yaf-2.8.0-orig/src/decode.c yaf-2.8.0/src/decode.c
12
--- yaf-2.8.0-orig/src/decode.c	2015-10-22 15:08:57.000000000 -0400
13
+++ yaf-2.8.0/src/decode.c	2016-02-12 17:12:18.855922551 -0500
14
@@ -1634,4 +1634,10 @@
15
         }
16
         break;
17
+      case YF_PROTO_TUNNEL_IP6:
18
+        if (!(pkt = yfDecodeIP(ctx, YF_TYPE_IPv6, caplen, pkt, key, iplen,
19
+			       fraginfo, tcpinfo))) {
20
+	    return NULL;
21
+	}
22
+	break;
23
       default:
24
         /* No layer 4 header we understand. Zero ports. */
(-)b/net-mgmt/yaf/files/patch-airframe__src__airdaemon.c (+13 lines)
Added Link Here
1
--- airframe/src/airdaemon.c.orig	2023-05-04 16:46:55.379571197 -0400
2
+++ airframe/src/airdaemon.c	2023-05-04 16:47:25.477529958 -0400
3
@@ -61,6 +61,10 @@
4
 #include <airframe/airopt.h>
5
 #include <airframe/logconfig.h>
6
 
7
+#ifdef G_OS_UNIX
8
+#include <sys/wait.h>
9
+#endif
10
+
11
 static uint32_t       ad_retry_min        = 30;
12
 static uint32_t       ad_retry_max        = 0;
13
 static gboolean       ad_nodaemon         = FALSE;
(-)b/net-mgmt/yaf/files/patch-airframe__src__filedaemon.c (+13 lines)
Added Link Here
1
--- airframe/src/filedaemon.c.orig	2023-05-04 16:40:39.129181263 -0400
2
+++ airframe/src/filedaemon.c	2023-05-04 16:41:25.007558271 -0400
3
@@ -17,6 +17,10 @@
4
 #include <airframe/airopt.h>
5
 #include <airframe/logconfig.h>
6
 
7
+#ifdef G_OS_UNIX
8
+#include <sys/wait.h>
9
+#endif
10
+
11
 static char          *fd_inspec          = NULL;
12
 static char          *fd_outspec         = NULL;
13
 static char          *fd_nextdir         = NULL;
(-)b/net-mgmt/yaf/pkg-plist (-33 / +4 lines)
Lines 33-165 include/yaf/yafrag.h Link Here
33
include/yaf/yaftab.h
33
include/yaf/yaftab.h
34
lib/libairframe-%%PORTVERSION%%.so.4
34
lib/libairframe-%%PORTVERSION%%.so.4
35
lib/libairframe-%%PORTVERSION%%.so.4.0.0
35
lib/libairframe-%%PORTVERSION%%.so.4.0.0
36
lib/libairframe.a
37
lib/libairframe.so
36
lib/libairframe.so
38
lib/libyaf-%%PORTVERSION%%.so.4
37
lib/libyaf-%%PORTVERSION%%.so.4
39
lib/libyaf-%%PORTVERSION%%.so.4.0.0
38
lib/libyaf-%%PORTVERSION%%.so.4.0.0
40
lib/libyaf.a
41
lib/libyaf.so
39
lib/libyaf.so
42
%%APPLABEL%%lib/yaf/aolplugin.a
43
%%APPLABEL%%lib/yaf/aolplugin.so
40
%%APPLABEL%%lib/yaf/aolplugin.so
44
%%APPLABEL%%lib/yaf/aolplugin.so.1
41
%%APPLABEL%%lib/yaf/aolplugin.so.1
45
%%APPLABEL%%lib/yaf/aolplugin.so.1.0.1
42
%%APPLABEL%%lib/yaf/aolplugin.so.1.0.1
46
%%APPLABEL%%lib/yaf/bgpplugin.a
47
%%APPLABEL%%lib/yaf/bgpplugin.so
43
%%APPLABEL%%lib/yaf/bgpplugin.so
48
%%APPLABEL%%lib/yaf/bgpplugin.so.1
44
%%APPLABEL%%lib/yaf/bgpplugin.so.1
49
%%APPLABEL%%lib/yaf/bgpplugin.so.1.0.1
45
%%APPLABEL%%lib/yaf/bgpplugin.so.1.0.1
50
%%APPLABEL%%lib/yaf/dhcp_fp_plugin.a
51
%%APPLABEL%%lib/yaf/dhcp_fp_plugin.so
46
%%APPLABEL%%lib/yaf/dhcp_fp_plugin.so
52
%%APPLABEL%%lib/yaf/dhcp_fp_plugin.so.1
47
%%APPLABEL%%lib/yaf/dhcp_fp_plugin.so.1
53
%%APPLABEL%%lib/yaf/dhcp_fp_plugin.so.1.0.1
48
%%APPLABEL%%lib/yaf/dhcp_fp_plugin.so.1.0.1
54
%%APPLABEL%%lib/yaf/dhcpplugin.a
55
%%APPLABEL%%lib/yaf/dhcpplugin.so
49
%%APPLABEL%%lib/yaf/dhcpplugin.so
56
%%APPLABEL%%lib/yaf/dhcpplugin.so.1
50
%%APPLABEL%%lib/yaf/dhcpplugin.so.1
57
%%APPLABEL%%lib/yaf/dhcpplugin.so.1.0.1
51
%%APPLABEL%%lib/yaf/dhcpplugin.so.1.0.1
58
%%APPLABEL%%lib/yaf/dnp3plugin.a
59
%%APPLABEL%%lib/yaf/dnp3plugin.so
52
%%APPLABEL%%lib/yaf/dnp3plugin.so
60
%%APPLABEL%%lib/yaf/dnp3plugin.so.1
53
%%APPLABEL%%lib/yaf/dnp3plugin.so.1
61
%%APPLABEL%%lib/yaf/dnp3plugin.so.1.0.1
54
%%APPLABEL%%lib/yaf/dnp3plugin.so.1.0.1
62
%%APPLABEL%%lib/yaf/dnsplugin.a
63
%%APPLABEL%%lib/yaf/dnsplugin.so
55
%%APPLABEL%%lib/yaf/dnsplugin.so
64
%%APPLABEL%%lib/yaf/dnsplugin.so.1
56
%%APPLABEL%%lib/yaf/dnsplugin.so.1
65
%%APPLABEL%%lib/yaf/dnsplugin.so.1.0.1
57
%%APPLABEL%%lib/yaf/dnsplugin.so.1.0.1
66
%%APPLABEL%%lib/yaf/dpacketplugin.a
67
%%APPLABEL%%lib/yaf/dpacketplugin.so
58
%%APPLABEL%%lib/yaf/dpacketplugin.so
68
%%APPLABEL%%lib/yaf/dpacketplugin.so.1
59
%%APPLABEL%%lib/yaf/dpacketplugin.so.1
69
%%APPLABEL%%lib/yaf/dpacketplugin.so.1.0.1
60
%%APPLABEL%%lib/yaf/dpacketplugin.so.1.0.1
70
%%APPLABEL%%lib/yaf/dumpplugin.a
71
%%APPLABEL%%lib/yaf/dumpplugin.so
61
%%APPLABEL%%lib/yaf/dumpplugin.so
72
%%APPLABEL%%lib/yaf/dumpplugin.so.1
62
%%APPLABEL%%lib/yaf/dumpplugin.so.1
73
%%APPLABEL%%lib/yaf/dumpplugin.so.1.0.1
63
%%APPLABEL%%lib/yaf/dumpplugin.so.1.0.1
74
%%APPLABEL%%lib/yaf/ethipplugin.a
75
%%APPLABEL%%lib/yaf/ethipplugin.so
64
%%APPLABEL%%lib/yaf/ethipplugin.so
76
%%APPLABEL%%lib/yaf/ethipplugin.so.1
65
%%APPLABEL%%lib/yaf/ethipplugin.so.1
77
%%APPLABEL%%lib/yaf/ethipplugin.so.1.0.1
66
%%APPLABEL%%lib/yaf/ethipplugin.so.1.0.1
78
%%APPLABEL%%lib/yaf/ircplugin.a
79
%%APPLABEL%%lib/yaf/ircplugin.so
67
%%APPLABEL%%lib/yaf/ircplugin.so
80
%%APPLABEL%%lib/yaf/ircplugin.so.1
68
%%APPLABEL%%lib/yaf/ircplugin.so.1
81
%%APPLABEL%%lib/yaf/ircplugin.so.1.0.1
69
%%APPLABEL%%lib/yaf/ircplugin.so.1.0.1
82
%%APPLABEL%%lib/yaf/ldapplugin.a
83
%%APPLABEL%%lib/yaf/ldapplugin.so
70
%%APPLABEL%%lib/yaf/ldapplugin.so
84
%%APPLABEL%%lib/yaf/ldapplugin.so.1
71
%%APPLABEL%%lib/yaf/ldapplugin.so.1
85
%%APPLABEL%%lib/yaf/ldapplugin.so.1.0.1
72
%%APPLABEL%%lib/yaf/ldapplugin.so.1.0.1
86
%%APPLABEL%%lib/yaf/ldpplugin.a
87
%%APPLABEL%%lib/yaf/ldpplugin.so
73
%%APPLABEL%%lib/yaf/ldpplugin.so
88
%%APPLABEL%%lib/yaf/ldpplugin.so.1
74
%%APPLABEL%%lib/yaf/ldpplugin.so.1
89
%%APPLABEL%%lib/yaf/ldpplugin.so.1.0.1
75
%%APPLABEL%%lib/yaf/ldpplugin.so.1.0.1
90
%%APPLABEL%%lib/yaf/modbusplugin.a
91
%%APPLABEL%%lib/yaf/modbusplugin.so
76
%%APPLABEL%%lib/yaf/modbusplugin.so
92
%%APPLABEL%%lib/yaf/modbusplugin.so.1
77
%%APPLABEL%%lib/yaf/modbusplugin.so.1
93
%%APPLABEL%%lib/yaf/modbusplugin.so.1.0.1
78
%%APPLABEL%%lib/yaf/modbusplugin.so.1.0.1
94
%%APPLABEL%%lib/yaf/mysqlplugin.a
95
%%APPLABEL%%lib/yaf/mysqlplugin.so
79
%%APPLABEL%%lib/yaf/mysqlplugin.so
96
%%APPLABEL%%lib/yaf/mysqlplugin.so.1
80
%%APPLABEL%%lib/yaf/mysqlplugin.so.1
97
%%APPLABEL%%lib/yaf/mysqlplugin.so.1.0.1
81
%%APPLABEL%%lib/yaf/mysqlplugin.so.1.0.1
98
%%APPLABEL%%lib/yaf/nntpplugin.a
99
%%APPLABEL%%lib/yaf/nntpplugin.so
82
%%APPLABEL%%lib/yaf/nntpplugin.so
100
%%APPLABEL%%lib/yaf/nntpplugin.so.1
83
%%APPLABEL%%lib/yaf/nntpplugin.so.1
101
%%APPLABEL%%lib/yaf/nntpplugin.so.1.0.1
84
%%APPLABEL%%lib/yaf/nntpplugin.so.1.0.1
102
%%APPLABEL%%lib/yaf/ntpplugin.a
103
%%APPLABEL%%lib/yaf/ntpplugin.so
85
%%APPLABEL%%lib/yaf/ntpplugin.so
104
%%APPLABEL%%lib/yaf/ntpplugin.so.1
86
%%APPLABEL%%lib/yaf/ntpplugin.so.1
105
%%APPLABEL%%lib/yaf/ntpplugin.so.1.0.1
87
%%APPLABEL%%lib/yaf/ntpplugin.so.1.0.1
106
%%APPLABEL%%lib/yaf/nullplugin.a
107
%%APPLABEL%%lib/yaf/nullplugin.so
88
%%APPLABEL%%lib/yaf/nullplugin.so
108
%%APPLABEL%%lib/yaf/nullplugin.so.1
89
%%APPLABEL%%lib/yaf/nullplugin.so.1
109
%%APPLABEL%%lib/yaf/nullplugin.so.1.0.1
90
%%APPLABEL%%lib/yaf/nullplugin.so.1.0.1
110
%%APPLABEL%%lib/yaf/palplugin.a
111
%%APPLABEL%%lib/yaf/palplugin.so
91
%%APPLABEL%%lib/yaf/palplugin.so
112
%%APPLABEL%%lib/yaf/palplugin.so.1
92
%%APPLABEL%%lib/yaf/palplugin.so.1
113
%%APPLABEL%%lib/yaf/palplugin.so.1.0.1
93
%%APPLABEL%%lib/yaf/palplugin.so.1.0.1
114
%%APPLABEL%%lib/yaf/piplugin.a
115
%%APPLABEL%%lib/yaf/piplugin.so
94
%%APPLABEL%%lib/yaf/piplugin.so
116
%%APPLABEL%%lib/yaf/piplugin.so.1
95
%%APPLABEL%%lib/yaf/piplugin.so.1
117
%%APPLABEL%%lib/yaf/piplugin.so.1.0.1
96
%%APPLABEL%%lib/yaf/piplugin.so.1.0.1
118
%%APPLABEL%%lib/yaf/pop3plugin.a
119
%%APPLABEL%%lib/yaf/pop3plugin.so
97
%%APPLABEL%%lib/yaf/pop3plugin.so
120
%%APPLABEL%%lib/yaf/pop3plugin.so.1
98
%%APPLABEL%%lib/yaf/pop3plugin.so.1
121
%%APPLABEL%%lib/yaf/pop3plugin.so.1.0.1
99
%%APPLABEL%%lib/yaf/pop3plugin.so.1.0.1
122
%%APPLABEL%%lib/yaf/pptpplugin.a
123
%%APPLABEL%%lib/yaf/pptpplugin.so
100
%%APPLABEL%%lib/yaf/pptpplugin.so
124
%%APPLABEL%%lib/yaf/pptpplugin.so.1
101
%%APPLABEL%%lib/yaf/pptpplugin.so.1
125
%%APPLABEL%%lib/yaf/pptpplugin.so.1.0.1
102
%%APPLABEL%%lib/yaf/pptpplugin.so.1.0.1
126
%%APPLABEL%%lib/yaf/proxyplugin.a
127
%%APPLABEL%%lib/yaf/proxyplugin.so
103
%%APPLABEL%%lib/yaf/proxyplugin.so
128
%%APPLABEL%%lib/yaf/proxyplugin.so.1
104
%%APPLABEL%%lib/yaf/proxyplugin.so.1
129
%%APPLABEL%%lib/yaf/proxyplugin.so.1.0.1
105
%%APPLABEL%%lib/yaf/proxyplugin.so.1.0.1
130
%%APPLABEL%%lib/yaf/rtpplugin.a
131
%%APPLABEL%%lib/yaf/rtpplugin.so
106
%%APPLABEL%%lib/yaf/rtpplugin.so
132
%%APPLABEL%%lib/yaf/rtpplugin.so.1
107
%%APPLABEL%%lib/yaf/rtpplugin.so.1
133
%%APPLABEL%%lib/yaf/rtpplugin.so.1.0.1
108
%%APPLABEL%%lib/yaf/rtpplugin.so.1.0.1
134
%%APPLABEL%%lib/yaf/slpplugin.a
135
%%APPLABEL%%lib/yaf/slpplugin.so
109
%%APPLABEL%%lib/yaf/slpplugin.so
136
%%APPLABEL%%lib/yaf/slpplugin.so.1
110
%%APPLABEL%%lib/yaf/slpplugin.so.1
137
%%APPLABEL%%lib/yaf/slpplugin.so.1.0.1
111
%%APPLABEL%%lib/yaf/slpplugin.so.1.0.1
138
%%APPLABEL%%lib/yaf/snmpplugin.a
112
%%APPLABEL%%lib/yaf/smtpplugin.so
113
%%APPLABEL%%lib/yaf/smtpplugin.so.1
114
%%APPLABEL%%lib/yaf/smtpplugin.so.1.0.1
139
%%APPLABEL%%lib/yaf/snmpplugin.so
115
%%APPLABEL%%lib/yaf/snmpplugin.so
140
%%APPLABEL%%lib/yaf/snmpplugin.so.1
116
%%APPLABEL%%lib/yaf/snmpplugin.so.1
141
%%APPLABEL%%lib/yaf/snmpplugin.so.1.0.1
117
%%APPLABEL%%lib/yaf/snmpplugin.so.1.0.1
142
%%APPLABEL%%lib/yaf/socksplugin.a
143
%%APPLABEL%%lib/yaf/socksplugin.so
118
%%APPLABEL%%lib/yaf/socksplugin.so
144
%%APPLABEL%%lib/yaf/socksplugin.so.1
119
%%APPLABEL%%lib/yaf/socksplugin.so.1
145
%%APPLABEL%%lib/yaf/socksplugin.so.1.0.1
120
%%APPLABEL%%lib/yaf/socksplugin.so.1.0.1
146
%%APPLABEL%%lib/yaf/teredoplugin.a
147
%%APPLABEL%%lib/yaf/teredoplugin.so
121
%%APPLABEL%%lib/yaf/teredoplugin.so
148
%%APPLABEL%%lib/yaf/teredoplugin.so.1
122
%%APPLABEL%%lib/yaf/teredoplugin.so.1
149
%%APPLABEL%%lib/yaf/teredoplugin.so.1.0.1
123
%%APPLABEL%%lib/yaf/teredoplugin.so.1.0.1
150
%%APPLABEL%%lib/yaf/tftpplugin.a
151
%%APPLABEL%%lib/yaf/tftpplugin.so
124
%%APPLABEL%%lib/yaf/tftpplugin.so
152
%%APPLABEL%%lib/yaf/tftpplugin.so.1
125
%%APPLABEL%%lib/yaf/tftpplugin.so.1
153
%%APPLABEL%%lib/yaf/tftpplugin.so.1.0.1
126
%%APPLABEL%%lib/yaf/tftpplugin.so.1.0.1
154
%%APPLABEL%%lib/yaf/tlsplugin.a
155
%%APPLABEL%%lib/yaf/tlsplugin.so
127
%%APPLABEL%%lib/yaf/tlsplugin.so
156
%%APPLABEL%%lib/yaf/tlsplugin.so.1
128
%%APPLABEL%%lib/yaf/tlsplugin.so.1
157
%%APPLABEL%%lib/yaf/tlsplugin.so.1.0.1
129
%%APPLABEL%%lib/yaf/tlsplugin.so.1.0.1
158
%%APPLABEL%%lib/yaf/gh0stplugin.a
159
%%APPLABEL%%lib/yaf/gh0stplugin.so
130
%%APPLABEL%%lib/yaf/gh0stplugin.so
160
%%APPLABEL%%lib/yaf/gh0stplugin.so.1
131
%%APPLABEL%%lib/yaf/gh0stplugin.so.1
161
%%APPLABEL%%lib/yaf/gh0stplugin.so.1.0.1
132
%%APPLABEL%%lib/yaf/gh0stplugin.so.1.0.1
162
%%APPLABEL%%lib/yaf/netdgmplugin.a
163
%%APPLABEL%%lib/yaf/netdgmplugin.so
133
%%APPLABEL%%lib/yaf/netdgmplugin.so
164
%%APPLABEL%%lib/yaf/netdgmplugin.so.1
134
%%APPLABEL%%lib/yaf/netdgmplugin.so.1
165
%%APPLABEL%%lib/yaf/netdgmplugin.so.1.0.1
135
%%APPLABEL%%lib/yaf/netdgmplugin.so.1.0.1
Lines 167-172 lib/libyaf.so Link Here
167
@sample %%ETCDIR%%/yafApplabelRules.conf.sample
137
@sample %%ETCDIR%%/yafApplabelRules.conf.sample
168
@sample %%ETCDIR%%/yafDPIRules.conf.sample
138
@sample %%ETCDIR%%/yafDPIRules.conf.sample
169
@sample %%ETCDIR%%/yaf.conf.sample
139
@sample %%ETCDIR%%/yaf.conf.sample
140
%%DATADIR%%/yaf.init
170
libdata/pkgconfig/libairframe.pc
141
libdata/pkgconfig/libairframe.pc
171
libdata/pkgconfig/libyaf.pc
142
libdata/pkgconfig/libyaf.pc
172
man/man1/airdaemon.1.gz
143
man/man1/airdaemon.1.gz
(-)b/net/libfixbuf/Makefile (-1 / +1 lines)
Lines 1-5 Link Here
1
PORTNAME=	libfixbuf
1
PORTNAME=	libfixbuf
2
PORTVERSION=	2.4.1
2
PORTVERSION=	2.4.2
3
CATEGORIES=	net
3
CATEGORIES=	net
4
MASTER_SITES=	http://tools.netsa.cert.org/releases/
4
MASTER_SITES=	http://tools.netsa.cert.org/releases/
5
5
(-)b/net/libfixbuf/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1660821177
1
TIMESTAMP = 1683231801
2
SHA256 (libfixbuf-2.4.1.tar.gz) = 8c535d48120b08df1731de709f2dbd2ba8bce568ad64cac34826102caf594d84
2
SHA256 (libfixbuf-2.4.2.tar.gz) = 4286d94224a2d9e21937b50a87ee1e204768f30fd193f48f381a63743944bf08
3
SIZE (libfixbuf-2.4.1.tar.gz) = 1001162
3
SIZE (libfixbuf-2.4.2.tar.gz) = 1005979

Return to bug 271249