summaryrefslogtreecommitdiff
path: root/net/xorp/files/patch-libxipc__xrl_pf_stcp.cc
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2014-02-26 21:54:59 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2014-02-26 21:54:59 +0000
commit54dc2eefdab938ae2b410e756853cd13e4aaf074 (patch)
tree962ae154fb3cfc79c860e04a7f680db1f8814018 /net/xorp/files/patch-libxipc__xrl_pf_stcp.cc
parent- mark forbidden if build with Apache modules (not the default) (diff)
- Update to 1.8.5
- Unbreak and unexpire - Stage support PR: ports/186982 Submitted by: Johannes 5 Joemann
Diffstat (limited to 'net/xorp/files/patch-libxipc__xrl_pf_stcp.cc')
-rw-r--r--net/xorp/files/patch-libxipc__xrl_pf_stcp.cc29
1 files changed, 29 insertions, 0 deletions
diff --git a/net/xorp/files/patch-libxipc__xrl_pf_stcp.cc b/net/xorp/files/patch-libxipc__xrl_pf_stcp.cc
new file mode 100644
index 000000000000..a22f6fdced95
--- /dev/null
+++ b/net/xorp/files/patch-libxipc__xrl_pf_stcp.cc
@@ -0,0 +1,29 @@
+--- ./libxipc/xrl_pf_stcp.cc.orig 2011-09-08 17:46:00.000000000 +0000
++++ ./libxipc/xrl_pf_stcp.cc 2014-02-26 21:17:13.000000000 +0000
+@@ -584,7 +584,7 @@
+ uint32_t sn,
+ const Xrl& x,
+ const Callback& cb)
+- : _p(p), _sn(sn), _b(_buffer), _cb(cb), _keepalive(false)
++ : _p(p), _sn(sn), _b(_buffer), _cb(cb) //, _keepalive(false)
+ {
+ size_t header_bytes = STCPPacketHeader::header_size();
+ size_t xrl_bytes = x.packed_bytes();
+@@ -607,7 +607,7 @@
+ }
+
+ RequestState(XrlPFSTCPSender* p, uint32_t sn)
+- : _p(p), _sn(sn), _b(_buffer), _keepalive(true)
++ : _p(p), _sn(sn), _b(_buffer) //, _keepalive(true)
+ {
+ size_t header_bytes = STCPPacketHeader::header_size();
+
+@@ -650,7 +650,7 @@
+ uint8_t _buffer[256]; // XXX important performance parameter
+ uint32_t _size;
+ Callback _cb;
+- bool _keepalive;
++ // bool _keepalive;
+ };
+
+