mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
synced 2025-11-01 20:53:35 +00:00
117 lines
2.6 KiB
C++
117 lines
2.6 KiB
C++
/*
|
|
* Copyright 2008 Free Software Foundation, Inc.
|
|
* Copyright 2013 Alexander Chemeris <Alexander.Chemeris@fairwaves.ru>
|
|
*
|
|
*
|
|
* This software is distributed under the terms of the GNU Affero Public License.
|
|
* See the COPYING file in the main directory for details.
|
|
*
|
|
* This use of this software may be subject to additional restrictions.
|
|
* See the LEGAL file in the main directory for details.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "Sockets.h"
|
|
#include "Threads.h"
|
|
#include "Configuration.h"
|
|
#include "Timeval.h"
|
|
#include <stdlib.h>
|
|
|
|
ConfigurationTable gConfig;
|
|
|
|
static const int gNumToSend = 10;
|
|
|
|
|
|
class TestReaderIP : public Thread
|
|
{
|
|
public:
|
|
TestReaderIP() : Thread("TestReaderIP") {}
|
|
|
|
protected:
|
|
virtual void runThread()
|
|
{
|
|
UDPSocket readSocket(5934, "localhost", 5061);
|
|
readSocket.nonblocking();
|
|
int rc = 0;
|
|
while (rc<gNumToSend) {
|
|
char buf[MAX_UDP_LENGTH];
|
|
int count = readSocket.read(buf);
|
|
if (count>0) {
|
|
COUT("IP read: " << buf);
|
|
rc++;
|
|
} else {
|
|
COUT("IP sleeping...");
|
|
sleep(2);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
class TestReaderUnix : public Thread
|
|
{
|
|
public:
|
|
TestReaderUnix() : Thread("TestReaderUnix") {}
|
|
|
|
protected:
|
|
virtual void runThread()
|
|
{
|
|
UDDSocket readSocket("testDestination");
|
|
readSocket.nonblocking();
|
|
int rc = 0;
|
|
while (rc<gNumToSend) {
|
|
char buf[MAX_UDP_LENGTH];
|
|
int count = readSocket.read(buf);
|
|
if (count>0) {
|
|
COUT("UNIX read: " << buf);
|
|
rc++;
|
|
} else {
|
|
COUT("UNIX sleeping...");
|
|
sleep(2);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
int main(int argc, char * argv[] )
|
|
{
|
|
|
|
TestReaderIP readerThreadIP;
|
|
TestReaderUnix readerThreadUnix;
|
|
readerThreadIP.startThread();
|
|
readerThreadUnix.startThread();
|
|
|
|
UDPSocket socket1(5061, "127.0.0.1",5934);
|
|
UDDSocket socket1U("testSource","testDestination");
|
|
|
|
COUT("socket1: " << socket1.port());
|
|
|
|
// give the readers time to open
|
|
sleep(1);
|
|
|
|
for (int i=0; i<gNumToSend; i++) {
|
|
socket1.write("Hello IP land");
|
|
socket1U.write("Hello Unix domain");
|
|
msleep(1);
|
|
}
|
|
|
|
}
|
|
|
|
// vim: ts=4 sw=4
|