blob: 9a7d6f0995662e725d9628a96b2b132e2e60d735 [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
Pau Espin Pedrolcb0fc9b2018-01-15 10:29:20 +010038void *testReaderIP(void *param)
dburgess82c46ff2011-10-07 02:40:51 +000039{
Pau Espin Pedrolcb0fc9b2018-01-15 10:29:20 +010040 UDPSocket *readSocket = (UDPSocket *)param;
41 readSocket->nonblocking();
dburgess82c46ff2011-10-07 02:40:51 +000042 int rc = 0;
43 while (rc<gNumToSend) {
44 char buf[MAX_UDP_LENGTH];
Pau Espin Pedrolcb0fc9b2018-01-15 10:29:20 +010045 int count = readSocket->read(buf, MAX_UDP_LENGTH);
dburgess82c46ff2011-10-07 02:40:51 +000046 if (count>0) {
Pau Espin Pedrol2f376a32018-01-09 19:45:15 +010047 CERR("read: " << buf);
dburgess82c46ff2011-10-07 02:40:51 +000048 rc++;
49 } else {
50 sleep(2);
51 }
52 }
53 return NULL;
54}
55
dburgess82c46ff2011-10-07 02:40:51 +000056int main(int argc, char * argv[] )
57{
58
Pau Espin Pedrolcb0fc9b2018-01-15 10:29:20 +010059 UDPSocket readSocket("127.0.0.1", 0);
60 UDPSocket socket1("127.0.0.1", 0, "localhost", readSocket.port());
61
62 CERR("socket1: " << socket1.port() << ", readSocket: " << readSocket.port());
63
dburgess82c46ff2011-10-07 02:40:51 +000064 Thread readerThreadIP;
Pau Espin Pedrolcb0fc9b2018-01-15 10:29:20 +010065 readerThreadIP.start(testReaderIP, &readSocket);
dburgess82c46ff2011-10-07 02:40:51 +000066
67 // give the readers time to open
68 sleep(1);
69
70 for (int i=0; i<gNumToSend; i++) {
Pau Espin Pedrol2f376a32018-01-09 19:45:15 +010071 socket1.write("Hello IP land");
Pau Espin Pedrol8639fee2018-01-11 19:27:48 +010072 sleep(1);
dburgess82c46ff2011-10-07 02:40:51 +000073 }
74
75 readerThreadIP.join();
Pau Espin Pedrol2f376a32018-01-09 19:45:15 +010076
77 printf("Done\n");
dburgess82c46ff2011-10-07 02:40:51 +000078}
79
80// vim: ts=4 sw=4