1
/* Copyright (c) 2008 PrimeBase Technologies GmbH, Germany
3
* PrimeBase Media Stream for MySQL
5
* This program is free software; you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License as published by
7
* the Free Software Foundation; either version 2 of the License, or
8
* (at your option) any later version.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
* Original author: Paul McCullagh
20
* Continued development: Barry Leslie
30
#ifndef __NETWORK_MS_H__
31
#define __NETWORK_MS_H__
36
#include "ConnectionHandler_ms.h"
38
class MSSystemThread : public CSDaemon {
40
MSSystemThread(time_t wait_time, CSThreadList *list): CSDaemon(wait_time, list) { }
42
virtual bool doWork();
47
static void startUp(int port);
48
static void shutDown();
49
static CSSocket *openConnection(MSConnectionHandler *handler);
50
static void startConnectionHandler();
51
static void startNetwork();
52
static bool lockListenerSocket(MSConnectionHandler *handle);
53
static void unlockListenerSocket();
54
static CSMutex *getListenerLock() { return &gListenerLock; }
55
static bool killListener();
58
static MSSystemThread *gSystemThread;
59
static time_t gCurrentTime;
60
static time_t gLastService;
61
static CSThreadList *gHandlerList;
62
static CSSync gListenerLock;
63
static CSSocket *gListenerSocket;
64
static MSConnectionHandler *gListenerThread;
65
static u_int gWaitingToListen;
68
static int handlerCount;