view src/login-common/Makefile.am @ 9308:1072d2b53f72 HEAD

login-proxy: If proxy destination is known to be down, fail immediately. We'll use a simple rule: If connection failed or timed out more recently than it succeeded AND there are currently no clients trying to connect to it, fail it. Since the connect isn't failed unless there is at least one client already trying to connect to it, the proxy notices immediately when the server comes back up and then starts serving it again.
author Timo Sirainen <tss@iki.fi>
date Wed, 12 Aug 2009 14:51:35 -0400
parents 22985329af92
children
line wrap: on
line source

noinst_LIBRARIES = liblogin-common.a

AM_CPPFLAGS = \
	-I$(top_srcdir)/src/lib \
	-I$(top_srcdir)/src/lib-auth \
	-DPKG_RUNDIR=\""$(rundir)"\" \
	-DPKG_STATEDIR=\""$(statedir)"\" \
	-DSBINDIR=\""$(sbindir)"\"

liblogin_common_a_SOURCES = \
	client-common.c \
	login-proxy.c \
	login-proxy-state.c \
	main.c \
	master.c \
	sasl-server.c \
	ssl-proxy.c \
	ssl-proxy-gnutls.c \
	ssl-proxy-openssl.c

noinst_HEADERS = \
	client-common.h \
	login-proxy.h \
	login-proxy-state.h \
	common.h \
	master.h \
	sasl-server.h \
	ssl-proxy.h