Skip to content
Snippets Groups Projects
Commit ebbf166c authored by Richard Mudgett's avatar Richard Mudgett
Browse files

Make SIP tests compile again.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@268857 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent bfdb9731
No related branches found
No related tags found
No related merge requests found
...@@ -279,8 +279,8 @@ AST_TEST_DEFINE(test_sip_rtpqos_1) ...@@ -279,8 +279,8 @@ AST_TEST_DEFINE(test_sip_rtpqos_1)
} lookup[] = { } lookup[] = {
{ "txcount", INT, { .i4 = &mine.txcount, }, }, { "txcount", INT, { .i4 = &mine.txcount, }, },
{ "rxcount", INT, { .i4 = &mine.rxcount, }, }, { "rxcount", INT, { .i4 = &mine.rxcount, }, },
{ "txjitter", INT, { .i4 = &mine.txjitter, }, }, { "txjitter", DBL, { .d8 = &mine.txjitter, }, },
{ "rxjitter", INT, { .i4 = &mine.rxjitter, }, }, { "rxjitter", DBL, { .d8 = &mine.rxjitter, }, },
{ "remote_maxjitter", DBL, { .d8 = &mine.remote_maxjitter, }, }, { "remote_maxjitter", DBL, { .d8 = &mine.remote_maxjitter, }, },
{ "remote_minjitter", DBL, { .d8 = &mine.remote_minjitter, }, }, { "remote_minjitter", DBL, { .d8 = &mine.remote_minjitter, }, },
{ "remote_normdevjitter", DBL, { .d8 = &mine.remote_normdevjitter, }, }, { "remote_normdevjitter", DBL, { .d8 = &mine.remote_normdevjitter, }, },
...@@ -299,7 +299,7 @@ AST_TEST_DEFINE(test_sip_rtpqos_1) ...@@ -299,7 +299,7 @@ AST_TEST_DEFINE(test_sip_rtpqos_1)
{ "local_minrxploss", DBL, { .d8 = &mine.local_minrxploss, }, }, { "local_minrxploss", DBL, { .d8 = &mine.local_minrxploss, }, },
{ "local_normdevrxploss", DBL, { .d8 = &mine.local_normdevrxploss, }, }, { "local_normdevrxploss", DBL, { .d8 = &mine.local_normdevrxploss, }, },
{ "local_stdevrxploss", DBL, { .d8 = &mine.local_stdevrxploss, }, }, { "local_stdevrxploss", DBL, { .d8 = &mine.local_stdevrxploss, }, },
{ "rtt", INT, { .i4 = &mine.rtt, }, }, { "rtt", DBL, { .d8 = &mine.rtt, }, },
{ "maxrtt", DBL, { .d8 = &mine.maxrtt, }, }, { "maxrtt", DBL, { .d8 = &mine.maxrtt, }, },
{ "minrtt", DBL, { .d8 = &mine.minrtt, }, }, { "minrtt", DBL, { .d8 = &mine.minrtt, }, },
{ "normdevrtt", DBL, { .d8 = &mine.normdevrtt, }, }, { "normdevrtt", DBL, { .d8 = &mine.normdevrtt, }, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment