File: recursorservice.cc

package info (click to toggle)
pdns-recursor 3.1.4%2Bv3.1.7-0%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,112 kB
  • ctags: 2,505
  • sloc: cpp: 11,355; ansic: 5,430; sh: 1,103; makefile: 132
file content (64 lines) | stat: -rw-r--r-- 1,718 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
    PowerDNS Versatile Database Driven Nameserver
    Copyright (C) 2002 - 2006  PowerDNS.COM BV

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License version 2
    as published by the Free Software Foundation
    
    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 General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

#include "recursorservice.hh"

extern int serviceMain( int argc, char *argv[] );

// Control handler.
void RecursorService::ctrlHandler( DWORD controlCode )
{
  if ( m_statusCode == SERVICE_STOPPED )
    exit( 0 );

  switch ( controlCode )
  {
    case SERVICE_CONTROL_STOP:
      setStatus( SERVICE_STOP_PENDING );
      shutdown();
      setStatus( SERVICE_STOPPED );
      // FIXME: Add a cleaner way to do this:
      break;

    case SERVICE_CONTROL_INTERROGATE:
      setStatus( m_statusCode, m_errorCode );
      break;

    case SERVICE_CONTROL_SHUTDOWN:
      setStatus( SERVICE_STOP_PENDING );
      shutdown();
      setStatus( SERVICE_STOPPED );
      // FIXME: Add a cleaner way to do this:
      break;
  }
}


// Returns the service name.
std::string RecursorService::getServiceName( void )
{
  return "PowerDNS Recursor";
}


// Main procedure.
int RecursorService::main( int argc, char *argv[] )
{
  return serviceMain( argc, argv );

}