1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
/*
* SRT - Secure, Reliable, Transport
* Copyright (c) 2018 Haivision Systems Inc.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
#include <iostream>
#include <string>
#include <iomanip>
#include <udt.h>
#include <utilities.h>
#include <packet.h>
#include <crypto.h>
#include <common.h>
using namespace srt;
void ShowDistance(int32_t s1, int32_t s2)
{
using namespace std;
cout << "s1=" << s1 << "s2=" << s2 << " DISTANCE:\n";
cout << "seqcmp -> " << CSeqNo::seqcmp(s1, s2) << endl;
cout << "seqoff -> " << CSeqNo::seqoff(s2, s1) << endl;
}
int main()
{
using namespace std;
cout << "PacketBoundary: " << hex << MSGNO_PACKET_BOUNDARY::mask << endl;
cout << "PB_FIRST: " << hex << PacketBoundaryBits(PB_FIRST) << endl;
cout << "PB_LAST: " << hex << PacketBoundaryBits(PB_LAST) << endl;
cout << "PB_SOLO: " << hex << PacketBoundaryBits(PB_SOLO) << endl;
cout << "inorder: " << hex << MSGNO_PACKET_INORDER::mask << " (1 << " << dec << MSGNO_PACKET_INORDER::offset << ")" << endl;
cout << "msgno-seq mask: " << hex << MSGNO_SEQ::mask << endl;
cout << "3 wrapped into enckeyspec: " << hex << setw(8) << setfill('0') << MSGNO_ENCKEYSPEC::wrap(3) << " - mask: " << MSGNO_ENCKEYSPEC::mask << endl;
cout << "SrtVersion test: 2.3.8 == 0x020308 -- SrtVersion(2, 3, 8) == 0x" << hex << setw(8) << setfill('0') << SrtVersion(2, 3, 8) << endl;
cout << "SEQNO_CONTROL::mask: " << hex << SEQNO_CONTROL::mask << " SEQNO 0x80050000 has control = " << SEQNO_CONTROL::unwrap(0x80050000)
<< " type = " << SEQNO_MSGTYPE::unwrap(0x80050000) << endl;
cout << "Creating array of bytes: 10, 11, 20, 25 - FormatBinaryString: ";
uint8_t array[4] = { 10, 11, 20, 25 };
cout << FormatBinaryString(array, 4) << endl;
cout << "-------------------------------\n";
cout << "SEQUENCES:\n";
int32_t s1 = 100, s2 = 200;
ShowDistance(s1, s2);
cout << "GO BACK BY -150:\n";
s1 = CSeqNo::decseq(s1, 150);
s2 = CSeqNo::decseq(s2, 150);
ShowDistance(s1, s2);
return 0;
}
|