*** empty log message ***

git-svn-id: http://voip.null.ro/svn/yate@1010 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
maciejka 2006-08-30 16:29:17 +00:00
parent 1b3708b885
commit ef92d0787d
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/python
from twisted.internet import reactor, defer
from yaypm import TCPDispatcherFactory, embededStart
from yaypm import TCPDispatcherFactory, embeddedStart
def route(yate):
def on_route(route):
@ -40,7 +40,7 @@ if __name__ == '__main__':
reactor.connectTCP("localhost", 5039, f)
reactor.run()
elif __name__ == "__embedded_yaypm_module__":
embededStart(route)
embeddedStart(route)
installSignalHandlers = 0
reactor.run(installSignalHandlers)