mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
Commit forgotten patch.
Submitted by: maintainer
This commit is contained in:
parent
eba5fde54f
commit
a3d2ea5371
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=493360
27
dns/powerdns-recursor/files/patch-rec__channel.cc
Normal file
27
dns/powerdns-recursor/files/patch-rec__channel.cc
Normal file
@ -0,0 +1,27 @@
|
||||
$OpenBSD: patch-rec_channel_cc,v 1.1.1.1 2018/12/29 14:29:08 sthen Exp $
|
||||
|
||||
Index: rec_channel.cc
|
||||
--- rec_channel.cc.orig 2019-01-31 19:43:44 UTC
|
||||
+++ rec_channel.cc
|
||||
@@ -54,6 +54,10 @@ int RecursorControlChannel::listen(const string& fname
|
||||
if(bind(d_fd, (sockaddr*)&d_local,sizeof(d_local))<0)
|
||||
throw PDNSException("Unable to bind to controlsocket '"+fname+"': "+stringerror());
|
||||
|
||||
+ int bufsz = 60*1024;
|
||||
+ setsockopt(d_fd, SOL_SOCKET, SO_SNDBUF, &bufsz, sizeof(bufsz));
|
||||
+ bufsz = 64*1024;
|
||||
+ setsockopt(d_fd, SOL_SOCKET, SO_RCVBUF, &bufsz, sizeof(bufsz));
|
||||
return d_fd;
|
||||
}
|
||||
|
||||
@@ -99,6 +103,10 @@ void RecursorControlChannel::connect(const string& pat
|
||||
unlink(d_local.sun_path);
|
||||
throw PDNSException("Unable to connect to remote '"+string(remote.sun_path)+"': "+stringerror());
|
||||
}
|
||||
+ int bufsz = 60*1024;
|
||||
+ setsockopt(d_fd, SOL_SOCKET, SO_SNDBUF, &bufsz, sizeof(bufsz));
|
||||
+ bufsz = 64*1024;
|
||||
+ setsockopt(d_fd, SOL_SOCKET, SO_RCVBUF, &bufsz, sizeof(bufsz));
|
||||
|
||||
} catch (...) {
|
||||
close(d_fd);
|
Loading…
Reference in New Issue
Block a user