File: authdaemondcpp.cpp

package info (click to toggle)
courier-authlib 0.72.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,824 kB
  • sloc: ansic: 15,828; sh: 5,047; cpp: 4,205; makefile: 853; perl: 761
file content (31 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (5)
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
/*
** Copyright 2016 Double Precision, Inc.  See COPYING for
** distribution information.
*/

#include <iostream>
#include <stdlib.h>

extern "C" {

#include "courierauthdebug.h"

	int start();
};

int main(int argc, char **argv)
{
	courier_authdebug_login_init();

	if (argc > 1)
	{
		std::cerr <<
			"Error: authdaemond no longer handles its own daemonizing."
			  << std::endl
			  << "Use new startup script." << std::endl;
		exit(1);
	}

	start();
	return (0);
}