Skip to content

Commit 3ed4aed

Browse files
committed
Fix build failed.
1 parent fa78cf3 commit 3ed4aed

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

trunk/configure

+5-2
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ KERNEL_OBJS="${MODULE_OBJS[@]}"
223223
MODULE_ID="PROTOCOL"
224224
MODULE_DEPENDS=("CORE" "KERNEL")
225225
ModuleLibIncs=(${SRS_OBJS_DIR} ${LibSTRoot} ${LibSSLRoot})
226-
MODULE_FILES=("srs_protocol_amf0" "srs_protocol_io" "srs_protocol_conn"
226+
MODULE_FILES=("srs_protocol_amf0" "srs_protocol_io" "srs_protocol_conn" "srs_protocol_rtmp_handshake"
227227
"srs_protocol_rtmp_stack" "srs_protocol_utility" "srs_protocol_rtmp_msg_array" "srs_protocol_stream"
228228
"srs_protocol_raw_avc" "srs_protocol_rtsp_stack" "srs_protocol_http_stack" "srs_protocol_kbps" "srs_protocol_json"
229229
"srs_protocol_format" "srs_protocol_log" "srs_protocol_st" "srs_protocol_http_client"
@@ -404,7 +404,10 @@ fi
404404
if [ $SRS_UTEST = YES ]; then
405405
MODULE_FILES=("srs_utest" "srs_utest_amf0" "srs_utest_protocol" "srs_utest_kernel" "srs_utest_core"
406406
"srs_utest_config" "srs_utest_rtmp" "srs_utest_http" "srs_utest_avc" "srs_utest_reload"
407-
"srs_utest_mp4" "srs_utest_service" "srs_utest_app" "srs_utest_rtc" "srs_utest_srt")
407+
"srs_utest_mp4" "srs_utest_service" "srs_utest_app" "srs_utest_rtc")
408+
if [[ $SRS_SRT == YES ]]; then
409+
MODULE_FILES+=("srs_utest_srt")
410+
fi
408411
ModuleLibIncs=(${SRS_OBJS_DIR} ${LibSTRoot} ${LibSSLRoot})
409412
if [[ $SRS_RTC == YES ]]; then
410413
ModuleLibIncs+=(${LibSrtpRoot})

trunk/src/app/srs_app_utility.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -1093,6 +1093,11 @@ void srs_update_rtmp_server(int nb_conn, SrsKbps* kbps)
10931093
nb_tcp_total = 0;
10941094
nb_tcp_mem = 0;
10951095
nb_udp4 = 0;
1096+
1097+
(void)nb_socks;
1098+
(void)nb_tcp_mem;
1099+
(void)nb_tcp4_hashed;
1100+
(void)nb_tcp_orphans;
10961101
#endif
10971102

10981103
int nb_tcp_estab = 0;

trunk/src/kernel/srs_kernel_utility.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -1041,7 +1041,6 @@ srs_error_t srs_av_base64_encode(std::string plaintext, std::string& cipher)
10411041
cipher.clear();
10421042

10431043
uint32_t val = 0;
1044-
int di = 0;
10451044
int si = 0;
10461045
int n = (plaintext.length() / 3) * 3;
10471046
uint8_t* p = (uint8_t*)plaintext.c_str();
@@ -1055,7 +1054,6 @@ srs_error_t srs_av_base64_encode(std::string plaintext, std::string& cipher)
10551054
cipher += encoder[val&0x3f];
10561055

10571056
si += 3;
1058-
di += 4;
10591057
}
10601058

10611059
int remain = plaintext.length() - si;

trunk/src/utest/srs_utest_protocol.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <srs_protocol_utility.hpp>
1717

1818
#include <srs_protocol_rtmp_stack.hpp>
19-
#include <srs_protocol_rtmp_stack.hpp>
19+
#include <srs_protocol_rtmp_handshake.hpp>
2020
#include <srs_protocol_stream.hpp>
2121
#include <srs_protocol_kbps.hpp>
2222

0 commit comments

Comments
 (0)