Module: sems Branch: master Commit: 866c744f6c1909508710adc60d6ef2ef75fd57d8 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=866c744f6c1909508710adc60d6ef2ef75fd57d8
Author: Raphael Coeffic <[email protected]> Committer: Raphael Coeffic <[email protected]> Date: Sat Feb 4 16:06:18 2012 +0100 rtmp: b/f: fix compilation error. --- apps/rtmp/RtmpServer.cpp | 4 ++++ apps/rtmp/RtmpServer.h | 1 + 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/apps/rtmp/RtmpServer.cpp b/apps/rtmp/RtmpServer.cpp index f4f68db..ad36626 100644 --- a/apps/rtmp/RtmpServer.cpp +++ b/apps/rtmp/RtmpServer.cpp @@ -166,3 +166,7 @@ void _RtmpServer::on_stop() ERROR("not yet supported!\n"); } +void _RtmpServer::dispose() +{ + ERROR("not yet supported!\n"); +} diff --git a/apps/rtmp/RtmpServer.h b/apps/rtmp/RtmpServer.h index 7d502e5..5fc7bad 100644 --- a/apps/rtmp/RtmpServer.h +++ b/apps/rtmp/RtmpServer.h @@ -53,6 +53,7 @@ public: protected: void run(); void on_stop(); + void dispose(); }; typedef singleton<_RtmpServer> RtmpServer; _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
