/*
* Copyright (c) 1999-2003, 2006 Proofpoint, Inc. and its suppliers.
* All rights reserved.
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*
*/
#include "libmilter.h"
#if !_FFR_WORKERS_POOL
/*
** HANDLE_SESSION -- Handle a connected session in its own context
**
** Parameters:
** ctx -- context structure
**
** Returns:
*/
int
{
int ret;
return MI_FAILURE;
/*
** Detach so resources are free when the thread returns.
** If we ever "wait" for threads, this call must be removed.
*/
ret = MI_FAILURE;
else
return ret;
}
#endif /* !_FFR_WORKERS_POOL */