blob: c2849e0494f2feb84747a29b88190e2ab4cf0352 [file] [log] [blame]
dburgess82c46ff2011-10-07 02:40:51 +00001/*
2* Copyright 2008 Free Software Foundation, Inc.
3*
4*
5* This software is distributed under the terms of the GNU Affero Public License.
6* See the COPYING file in the main directory for details.
7*
8* This use of this software may be subject to additional restrictions.
9* See the LEGAL file in the main directory for details.
10
11 This program is free software: you can redistribute it and/or modify
12 it under the terms of the GNU Affero General Public License as published by
13 the Free Software Foundation, either version 3 of the License, or
14 (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU Affero General Public License for more details.
20
21 You should have received a copy of the GNU Affero General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
23
24*/
25
26
27
28
29#include "Sockets.h"
30#include "Threads.h"
31#include <stdio.h>
32#include <stdlib.h>
33
34
35static const int gNumToSend = 10;
36
37
38void *testReaderIP(void *)
39{
Pau Espin Pedrol8c800952017-08-16 16:53:23 +020040 UDPSocket readSocket("127.0.0.1", 5934, "localhost", 5061);
dburgess82c46ff2011-10-07 02:40:51 +000041 readSocket.nonblocking();
42 int rc = 0;
43 while (rc<gNumToSend) {
44 char buf[MAX_UDP_LENGTH];
Tom Tsou2c650a62016-04-28 21:55:17 -070045 int count = readSocket.read(buf, MAX_UDP_LENGTH);
dburgess82c46ff2011-10-07 02:40:51 +000046 if (count>0) {
47 COUT("read: " << buf);
48 rc++;
49 } else {
50 sleep(2);
51 }
52 }
53 return NULL;
54}
55
56
57
58void *testReaderUnix(void *)
59{
60 UDDSocket readSocket("testDestination");
61 readSocket.nonblocking();
62 int rc = 0;
63 while (rc<gNumToSend) {
64 char buf[MAX_UDP_LENGTH];
Tom Tsou2c650a62016-04-28 21:55:17 -070065 int count = readSocket.read(buf, MAX_UDP_LENGTH);
dburgess82c46ff2011-10-07 02:40:51 +000066 if (count>0) {
67 COUT("read: " << buf);
68 rc++;
69 } else {
70 sleep(2);
71 }
72 }
73 return NULL;
74}
75
76
77int main(int argc, char * argv[] )
78{
79
80 Thread readerThreadIP;
81 readerThreadIP.start(testReaderIP,NULL);
82 Thread readerThreadUnix;
83 readerThreadUnix.start(testReaderUnix,NULL);
84
Pau Espin Pedrol8c800952017-08-16 16:53:23 +020085 UDPSocket socket1("127.0.0.1", 5061, "127.0.0.1", 5934);
dburgess82c46ff2011-10-07 02:40:51 +000086 UDDSocket socket1U("testSource","testDestination");
87
88 COUT("socket1: " << socket1.port());
89
90 // give the readers time to open
91 sleep(1);
92
93 for (int i=0; i<gNumToSend; i++) {
94 socket1.write("Hello IP land");
95 socket1U.write("Hello Unix domain");
96 sleep(1);
97 }
98
99 readerThreadIP.join();
100 readerThreadUnix.join();
101}
102
103// vim: ts=4 sw=4