2013-10-17 14:27:47 +00:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
Copyright (c) 2013 winlin
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2013-10-17 14:09:10 +00:00
|
|
|
#include <srs_core_log.hpp>
|
2013-10-18 02:39:37 +00:00
|
|
|
#include <srs_core_error.hpp>
|
|
|
|
#include <srs_core_server.hpp>
|
2013-11-02 09:55:59 +00:00
|
|
|
#include <srs_core_config.hpp>
|
2013-10-17 14:09:10 +00:00
|
|
|
|
2013-10-23 04:20:03 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int main(int argc, char** argv){
|
2013-10-18 02:39:37 +00:00
|
|
|
int ret = ERROR_SUCCESS;
|
2013-10-17 14:09:10 +00:00
|
|
|
|
2013-11-02 11:32:52 +00:00
|
|
|
if ((ret = config->parse_options(argc, argv)) != ERROR_SUCCESS) {
|
2013-11-02 09:55:59 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2013-10-23 04:20:03 +00:00
|
|
|
|
2013-10-18 02:39:37 +00:00
|
|
|
SrsServer server;
|
|
|
|
|
|
|
|
if ((ret = server.initialize()) != ERROR_SUCCESS) {
|
|
|
|
return ret;
|
|
|
|
}
|
2013-10-17 14:09:10 +00:00
|
|
|
|
2013-11-02 11:32:52 +00:00
|
|
|
if ((ret = server.listen()) != ERROR_SUCCESS) {
|
2013-10-18 08:23:06 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ret = server.cycle()) != ERROR_SUCCESS) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-10-17 12:58:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|