X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=avahi-utils%2Favahi-publish-service.in;h=de259574f0eedbe2a66d4e9e19eeff8c54811d91;hb=7c739f063e94aba0fca5e161597b87a9189fc609;hp=e6bb39c04a0f574db5cfb921345c53e3fdd41644;hpb=1a912326734243e57a461c48131c1a0402318b5a;p=catta diff --git a/avahi-utils/avahi-publish-service.in b/avahi-utils/avahi-publish-service.in index e6bb39c..de25957 100755 --- a/avahi-utils/avahi-publish-service.in +++ b/avahi-utils/avahi-publish-service.in @@ -1,7 +1,24 @@ -#!/usr/bin/env @PYTHON@ +#!@PYTHON@ # -*-python-*- # $Id$ +# This file is part of avahi. +# +# avahi is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# avahi is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public +# License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with avahi; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +# USA. + import avahi, dbus, gobject, sys, getopt try: @@ -19,7 +36,7 @@ def usage(retval = 0): try: opts, args = getopt.getopt(sys.argv[1:], "d:H:", ["help", "domain=", "host="]) except getopt.GetoptError: - usage(2) + pass domain = "" host = "" @@ -35,8 +52,7 @@ for o, a in opts: host = a if len(args) < 3: - sys.stderr.write("Invalid number of arguments\n") - sys.exit(1) + usage(2) name = args[0] stype = args[1] @@ -53,16 +69,18 @@ n_rename = 0 def remove_service(): global group - if not (group is None): - group.Free() - group = None + if not group is None: + group.Reset() def add_service(): global server, group, name, stype, domain, host, port, txt - assert group is None + + if group is None: + group = dbus.Interface(bus.get_object(avahi.DBUS_NAME, server.EntryGroupNew()), avahi.DBUS_INTERFACE_ENTRY_GROUP) + + assert group.IsEmpty() print "Adding service '%s' of type '%s' ..." % (name, stype) - group = dbus.Interface(bus.get_object(avahi.DBUS_NAME, server.EntryGroupNew()), avahi.DBUS_INTERFACE_ENTRY_GROUP) group.connect_to_signal('StateChanged', entry_group_state_changed) group.AddService(avahi.IF_UNSPEC, avahi.PROTO_UNSPEC, name, stype, domain, host, dbus.UInt16(port), txt) group.Commit() @@ -103,4 +121,5 @@ try: except KeyboardInterrupt, k: pass -remove_service() +if not group is None: + group.Free()