Skip to content

Commit 6e8969d

Browse files
committed
Disable setting SO_SNDBUF too.
1 parent bf29dde commit 6e8969d

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ Similar projects
134134
Changelog
135135
=========
136136

137+
* 0.6.2:
138+
139+
* Fix OS X regression.
140+
137141
* 0.6.1:
138142

139143
* Support for OS X (contributed by Saulius Menkevičius)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="manhole",
8-
version="0.6.1",
8+
version="0.6.2",
99
url='https://github.com/ionelmc/python-manhole',
1010
download_url='',
1111
license='BSD',

src/manhole.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,8 @@ def check_credentials(client):
204204
def handle(client):
205205
client.settimeout(None)
206206

207-
client.setsockopt(socket.SOL_SOCKET, socket.SO_SNDBUF, 0)
207+
# disable this till we have evidence that it's needed
208+
#client.setsockopt(socket.SOL_SOCKET, socket.SO_SNDBUF, 0)
208209
# Note: setting SO_RCVBUF on UDS has no effect, see: http://man7.org/linux/man-pages/man7/unix.7.html
209210

210211
backup = []

0 commit comments

Comments
 (0)