chan_h323.o: chan_h323.c
- $(CC) -g -c -o $@ $(CFLAGS) $<
+ $(CC) -g -pg -c -o $@ $(CFLAGS) $<
ast_h323.o: ast_h323.cpp
- g++ -g -c -o $@ $(CFLAGS) $<
+ g++ -g -pg -c -o $@ $(CFLAGS) $<
chan_h323.so: chan_h323.o ast_h323.o
- g++ -shared -Xlinker -x -o chan_h323.so chan_h323.o ast_h323.o -L$(PWLIBDIR)/lib -lpt_linux_x86_r -L$(OPENH323DIR)/lib -lh323_linux_x86_r -L/usr/lib -lpthread -ldl -lcrypto -lssl -lexpat
+ g++ -g -pg -shared -Xlinker -x -o chan_h323.so chan_h323.o ast_h323.o -L$(PWLIBDIR)/lib -lpt_linux_x86_r -L$(OPENH323DIR)/lib -lh323_linux_x86_r -L/usr/lib -lpthread -ldl -lcrypto -lssl -lexpat
chan_h323_d.so: chan_h323.o ast_h323.o
g++ -shared -Xlinker -x -o chan_h323.so chan_h323.o ast_h323.o -L$(PWLIBDIR)/lib -lpt_linux_x86_d -L$(OPENH323DIR)/lib -lh323_linux_x86_d -L/usr/lib -lpthread -ldl -lcrypto -lssl -lexpat
break;
case H323Connection::EndedByNoUser :
if (h323debug)
- cout << " -- Gatekeeper could not find user " << remoteName << endl;
+ cout << " -- Remote endpoint could not find user: " << remoteName << endl;
break;
case H323Connection::EndedByNoBandwidth :
if (h323debug)
jitter = _jitter;
PIPSocket::Address interfaceAddress(bindaddr.sin_addr);
+
+ if (!listenPort)
+ listenPort = 1720;
tcpListener = new H323ListenerTCP(*endPoint, interfaceAddress, (WORD)listenPort);