Browse Source

specify the address to listen on..

main
John-Mark Gurney 3 years ago
parent
commit
1f613420c9
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      pymeds.py

+ 3
- 3
pymeds.py View File

@@ -5,8 +5,8 @@
# Copyright 2005, Tim Potter <tpot@samba.org>
# Copyright 2006-2009 John-Mark Gurney <jmg@funkthat.com>

__version__ = '$Change$'
# $Id$
__version__ = '$Change: 1740 $'
# $Id: //depot/python/pymeds/main/pymeds.py#17 $

# make sure debugging is initalized first, other modules can be pulled in
# before the "real" debug stuff is setup. (hmm I could make this a two
@@ -213,7 +213,7 @@ def makeService(config):

serv = PyMedS()

internet.TCPServer(listenPort, site).setServiceParent(serv)
internet.TCPServer(listenPort, site, interface=listenAddr).setServiceParent(serv)
internet.MulticastServer(SSDP_PORT, s,
listenMultiple=True).setServiceParent(serv)



Loading…
Cancel
Save