mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
finish utest of protocol stack. 0.9.156
This commit is contained in:
parent
8e27df4cf7
commit
9556790a5e
14 changed files with 730 additions and 45 deletions
|
@ -36,6 +36,15 @@ ISrsThreadContext* _srs_context = new ISrsThreadContext();
|
|||
SrsConfig* _srs_config = NULL;
|
||||
SrsServer* _srs_server = NULL;
|
||||
|
||||
void __srs_bytes_print(char* pa, int size)
|
||||
{
|
||||
for(int i = 0; i < size; i++) {
|
||||
char v = pa[i];
|
||||
printf("%#x ", v);
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
// basic test and samples.
|
||||
VOID TEST(SampleTest, FastSampleInt64Test)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue