gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/rtmp r9975: use the target arguments, an


From: rob
Subject: [Gnash-commit] /srv/bzr/gnash/rtmp r9975: use the target arguments, and check for the correctly offset RTMP port.
Date: Mon, 09 Feb 2009 17:21:27 +0100
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 9975
committer: address@hidden
branch nick: rtmp
timestamp: Mon 2009-02-09 17:21:27 +0100
message:
  use the target arguments, and check for the correctly offset RTMP port.
modified:
  cygnal/cygnal.cpp
=== modified file 'cygnal/cygnal.cpp'
--- a/cygnal/cygnal.cpp 2009-02-05 00:42:18 +0000
+++ b/cygnal/cygnal.cpp 2009-02-09 16:21:27 +0000
@@ -602,9 +602,10 @@
                tnet = networks[tid];
            }
            if (args->port == (port_offset + RTMPT_PORT)) {
-               boost::bind(http_handler, args);
+               boost::bind(http_handler, targs);
                tnet->addPollFD(fds, http_handler);
-           } else if (args->port == RTMP_PORT) {
+           } else if (args->port == (port_offset + RTMP_PORT)) {
+               boost::bind(rtmp_handler, targs);
                tnet->addPollFD(fds, rtmp_handler);
            }
            if (networks[tid] == 0) {


reply via email to

[Prev in Thread] Current Thread [Next in Thread]