]> git.vomp.tv Git - vompserver.git/blob - udpreplier.c
Initial import
[vompserver.git] / udpreplier.c
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include "udpreplier.h"
22
23 // undeclared function
24 void UDPReplierStartThread(void *arg)
25 {
26   UDPReplier *m = (UDPReplier *)arg;
27   m->run2();
28 }
29
30
31 UDPReplier::UDPReplier()
32  : ds(3024)
33 {
34   runThread = 0;
35   running = 0;
36 }
37
38 UDPReplier::~UDPReplier()
39 {
40   if (running) stop();
41 }
42
43 int UDPReplier::stop()
44 {
45   if (!running) return 0;
46
47   running = 0;
48   pthread_cancel(runThread);
49   pthread_join(runThread, NULL);
50
51   return 1;
52 }
53
54 int UDPReplier::run()
55 {
56   if (running) return 1;
57   running = 1;
58   if (pthread_create(&runThread, NULL, (void*(*)(void*))UDPReplierStartThread, (void *)this) == -1) return 0;
59   printf("UDPReplier run success\n");
60   return 1;
61 }
62
63 void UDPReplier::run2()
64 {
65   // I don't want signals
66   sigset_t sigset;
67   sigfillset(&sigset);
68   pthread_sigmask(SIG_BLOCK, &sigset, NULL);
69
70   int retval;
71   while(1)
72   {
73     retval = ds.waitforMessage(0);
74     if (retval == 1) continue;
75
76     if (!strcmp(ds.getData(), "VOMP CLIENT"))
77       ds.send(ds.getFromIPA(), 3024, "VOMP SERVER", 11);
78   }
79 }