Deleted Added
full compact
milter.c (110560) milter.c (111823)
1/*
2 * Copyright (c) 1999-2002 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
4 *
5 * By using this file, you agree to the terms and conditions set
6 * forth in the LICENSE file which can be found at the top level of
7 * the sendmail distribution.
8 *
9 */
10
11#include <sendmail.h>
12
1/*
2 * Copyright (c) 1999-2002 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
4 *
5 * By using this file, you agree to the terms and conditions set
6 * forth in the LICENSE file which can be found at the top level of
7 * the sendmail distribution.
8 *
9 */
10
11#include <sendmail.h>
12
13SM_RCSID("@(#)$Id: milter.c,v 8.197.2.5 2002/11/11 23:22:28 ca Exp $")
13SM_RCSID("@(#)$Id: milter.c,v 8.197.2.6 2002/12/30 05:54:00 ca Exp $")
14
15#if MILTER
16# include <libmilter/mfapi.h>
17# include <libmilter/mfdef.h>
18
19# include <errno.h>
20# include <sys/time.h>
21

--- 522 unchanged lines hidden (view full) ---

544** MILTER_OPEN -- connect to remote milter filter
545**
546** Parameters:
547** m -- milter to connect to.
548** parseonly -- parse but don't connect.
549** e -- current envelope.
550**
551** Returns:
14
15#if MILTER
16# include <libmilter/mfapi.h>
17# include <libmilter/mfdef.h>
18
19# include <errno.h>
20# include <sys/time.h>
21

--- 522 unchanged lines hidden (view full) ---

544** MILTER_OPEN -- connect to remote milter filter
545**
546** Parameters:
547** m -- milter to connect to.
548** parseonly -- parse but don't connect.
549** e -- current envelope.
550**
551** Returns:
552** connected socket if sucessful && !parseonly,
552** connected socket if successful && !parseonly,
553** 0 upon parse success if parseonly,
554** -1 otherwise.
555*/
556
557static jmp_buf MilterConnectTimeout;
558
559static int
560milter_open(m, parseonly, e)

--- 3340 unchanged lines hidden ---
553** 0 upon parse success if parseonly,
554** -1 otherwise.
555*/
556
557static jmp_buf MilterConnectTimeout;
558
559static int
560milter_open(m, parseonly, e)

--- 3340 unchanged lines hidden ---