1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-15 04:42:04 +00:00
srs/trunk/src/main/srs_main_server.cpp

12 lines
171 B
C++
Raw Normal View History

2013-10-17 12:58:04 +00:00
#include <unistd.h>
2013-10-17 14:09:10 +00:00
#include <srs_core_log.hpp>
2013-10-17 12:58:04 +00:00
int main(int /*argc*/, char** /*argv*/){
2013-10-17 14:09:10 +00:00
log_context->SetId();
SrsWarn("server start");
2013-10-17 12:58:04 +00:00
return 0;
}