Skip to content

Commit

Permalink
For #1638, #307, accept srs_string_dumps_hex to app utility.
Browse files Browse the repository at this point in the history
  • Loading branch information
winlinvip committed Mar 16, 2020
1 parent e905fce commit 2f0b150
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
11 changes: 5 additions & 6 deletions trunk/src/app/srs_app_utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1193,22 +1193,21 @@ void srs_api_dump_summaries(SrsJsonObject* obj)
sys->set("conn_srs", SrsJsonAny::integer(nrs->nb_conn_srs));
}

string dump_string_hex(const std::string& str, const int& max_len)
string srs_string_dumps_hex(const std::string& str, const int& limit)
{
return dump_string_hex(str.c_str(), str.size(), max_len);
return srs_string_dumps_hex(str.c_str(), str.size(), limit);
}

string dump_string_hex(const char* buf, const int nb_buf, const int& max_len)
string srs_string_dumps_hex(const char* buf, const int length, const int& limit)
{
string ret;
ret.reserve(max_len * 4);
ret.reserve(limit * 4);

char tmp_buf[1024*16];
tmp_buf[0] = '\n';
int len = 1;

for (int i = 0; i < nb_buf && i < max_len; ++i) {
//int nb = snprintf(tmp_buf + len, sizeof(tmp_buf) - len - 2, "(%03d)%02X ", i, (uint8_t)buf[i]);
for (int i = 0; i < length && i < limit; ++i) {
int nb = snprintf(tmp_buf + len, sizeof(tmp_buf) - len - 2, "%02X ", (uint8_t)buf[i]);
if (nb <= 0)
break;
Expand Down
5 changes: 3 additions & 2 deletions trunk/src/app/srs_app_utility.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -650,8 +650,9 @@ extern bool srs_is_boolean(std::string str);
// Dump summaries for /api/v1/summaries.
extern void srs_api_dump_summaries(SrsJsonObject* obj);

extern std::string dump_string_hex(const std::string& str, const int& max_len = INT_MAX);
extern std::string dump_string_hex(const char* buf, const int nb_buf, const int& max_len = INT_MAX);
// Dump string(str in length) to hex, it will process min(limit, length) chars.
extern std::string srs_string_dumps_hex(const std::string& str, const int& limit = INT_MAX);
extern std::string srs_string_dumps_hex(const char* str, const int length, const int& limit = INT_MAX);

// Get ENV variable, which may starts with $.
// srs_getenv("EIP") === srs_getenv("$EIP")
Expand Down
1 change: 0 additions & 1 deletion trunk/src/kernel/srs_kernel_flv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ class ISrsWriter;
class ISrsReader;
class SrsFileReader;
class SrsPacket;
class SrsSample;
class SrsRtpSharedPacket;

#define SRS_FLV_TAG_HEADER_SIZE 11
Expand Down

0 comments on commit 2f0b150

Please sign in to comment.