Krenair

Untitled

Feb 2nd, 2012
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. alex@alex:~$ python
  2. Python 2.7.1+ (r271:86832, Apr 11 2011, 18:13:53)
  3. [GCC 4.5.2] on linux2
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> import socket
  6. >>> s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  7. >>> s.bind((socket.gethostname(), 6667))
  8. >>> s.listen()
  9. >>> s.listen(1)
  10. >>>
Advertisement
Add Comment
Please, Sign In to add comment