1/***************************************************************************
2 * LPRng - An Extended Print Spooler System
3 *
4 * Copyright 1988-2003, Patrick Powell, San Diego, CA
5 *     papowell@lprng.com
6 * See LICENSE for conditions of use.
7 * $Id: sendauth.h,v 1.1.1.1 2008/10/15 03:28:27 james26_jang Exp $
8 ***************************************************************************/
9
10
11
12#ifndef _SENDAUTH_H_
13#define _SENDAUTH_H_ 1
14
15/* PROTOTYPES */
16int Send_auth_transfer( int *sock, int transfer_timeout,
17	struct job *job, struct job *logjob, char *error, int errlen, char *cmd,
18	struct security *security, struct line_list *info );
19struct security *Fix_send_auth( char *name, struct line_list *info,
20	struct job *job, char *error, int errlen );
21void Put_in_auth( int tempfd, const char *key, char *value );
22
23#endif
24