Debugging RTMP connector, compile warning in Buffer fixed

This commit is contained in:
Thulinma 2010-11-22 01:52:17 +01:00
parent d6f6d21af1
commit eaa1c7c26f
3 changed files with 16 additions and 2 deletions

View file

@ -13,7 +13,10 @@
#include <sys/epoll.h>
void termination_handler (int signum){
return;
switch (signum){
case SIGPIPE: return; break;
default: return; break;
}
}