mirror of
https://github.com/ossrs/srs.git
synced 2025-02-13 11:51:57 +00:00
SRT: Rename srs_service_st_srt to srs_protocol_srt
This commit is contained in:
parent
fbc6eebe18
commit
78b778fb93
9 changed files with 10 additions and 10 deletions
2
trunk/configure
vendored
2
trunk/configure
vendored
|
@ -228,7 +228,7 @@ MODULE_FILES=("srs_protocol_amf0" "srs_protocol_io" "srs_protocol_conn" "srs_pro
|
|||
"srs_protocol_format" "srs_protocol_log" "srs_protocol_st" "srs_protocol_http_client"
|
||||
"srs_protocol_http_conn" "srs_protocol_rtmp_conn")
|
||||
if [[ $SRS_SRT == YES ]]; then
|
||||
MODULE_FILES+=("srs_service_st_srt")
|
||||
MODULE_FILES+=("srs_protocol_srt")
|
||||
ModuleLibIncs+=(${LibSRTRoot})
|
||||
fi
|
||||
if [[ $SRS_RTC == YES ]]; then
|
||||
|
|
|
@ -13,7 +13,7 @@ using namespace std;
|
|||
#include <srs_kernel_stream.hpp>
|
||||
#include <srs_core_autofree.hpp>
|
||||
#include <srs_rtmp_stack.hpp>
|
||||
#include <srs_service_st_srt.hpp>
|
||||
#include <srs_protocol_srt.hpp>
|
||||
#include <srs_app_config.hpp>
|
||||
#include <srs_app_http_hooks.hpp>
|
||||
#include <srs_app_pithy_print.hpp>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include <srs_service_st_srt.hpp>
|
||||
#include <srs_protocol_srt.hpp>
|
||||
#include <srs_app_st.hpp>
|
||||
#include <srs_app_conn.hpp>
|
||||
#include <srs_app_srt_utility.hpp>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include <srs_core.hpp>
|
||||
#include <srs_app_st.hpp>
|
||||
#include <srs_service_st_srt.hpp>
|
||||
#include <srs_protocol_srt.hpp>
|
||||
|
||||
#include <string>
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include <srs_core.hpp>
|
||||
|
||||
#include <srs_service_st_srt.hpp>
|
||||
#include <srs_protocol_srt.hpp>
|
||||
#include <srs_app_server.hpp>
|
||||
#include <srs_app_srt_listener.hpp>
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ using namespace std;
|
|||
#endif
|
||||
|
||||
#ifdef SRS_SRT
|
||||
#include <srs_service_st_srt.hpp>
|
||||
#include <srs_protocol_srt.hpp>
|
||||
#include <srs_app_srt_server.hpp>
|
||||
#endif
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
// SPDX-License-Identifier: MIT or MulanPSL-2.0
|
||||
//
|
||||
|
||||
#include <srs_service_st_srt.hpp>
|
||||
#include <srs_protocol_srt.hpp>
|
||||
|
||||
#include <sstream>
|
||||
|
|
@ -4,8 +4,8 @@
|
|||
// SPDX-License-Identifier: MIT or MulanPSL-2.0
|
||||
//
|
||||
|
||||
#ifndef SRS_SERVICE_ST_SRT_HPP
|
||||
#define SRS_SERVICE_ST_SRT_HPP
|
||||
#ifndef SRS_PROTOCOL_SRT_HPP
|
||||
#define SRS_PROTOCOL_SRT_HPP
|
||||
|
||||
#include <srs_core.hpp>
|
||||
#include <srs_service_st.hpp>
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include <srs_kernel_error.hpp>
|
||||
#include <srs_kernel_utility.hpp>
|
||||
#include <srs_service_st_srt.hpp>
|
||||
#include <srs_protocol_srt.hpp>
|
||||
#include <srs_rtmp_stack.hpp>
|
||||
#include <srs_app_srt_utility.hpp>
|
||||
#include <srs_app_srt_server.hpp>
|
||||
|
|
Loading…
Reference in a new issue