Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/skype/skyped.py

    r9ce44dd r6ba00ac  
    3232from ConfigParser import ConfigParser, NoOptionError
    3333from traceback import print_exception
    34 from fcntl import fcntl, F_SETFD, FD_CLOEXEC
    3534import ssl
    3635
     
    186185                sock = socket.socket()
    187186        sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
    188         fcntl(sock, F_SETFD, FD_CLOEXEC);
    189187        sock.bind((host, port))
    190188        sock.listen(1)
    191 
    192189        if hasgobject:
    193190                gobject.io_add_watch(sock, gobject.IO_IN, listener)
Note: See TracChangeset for help on using the changeset viewer.