Changes in / [3c88759:e93fa05]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/skype/skyped.py
r3c88759 re93fa05 32 32 from ConfigParser import ConfigParser, NoOptionError 33 33 from traceback import print_exception 34 from fcntl import fcntl, F_SETFD, FD_CLOEXEC35 34 import ssl 36 35 … … 186 185 sock = socket.socket() 187 186 sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) 188 fcntl(sock, F_SETFD, FD_CLOEXEC);189 187 sock.bind((host, port)) 190 188 sock.listen(1) 191 192 189 if hasgobject: 193 190 gobject.io_add_watch(sock, gobject.IO_IN, listener)
Note: See TracChangeset
for help on using the changeset viewer.