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: sendreq.h,v 1.1.1.1 2008/10/15 03:28:27 james26_jang Exp $
8 ***************************************************************************/
9
10
11
12#ifndef _SENDREQ_H_
13#define _SENDREQ_H_ 1
14
15/* PROTOTYPES */
16int Send_request(
17	int class,					/* 'Q'= LPQ, 'C'= LPC, M = lprm */
18	int format,					/* X for option */
19	char **options,				/* options to send */
20	int connnect_timeout,		/* timeout on connection */
21	int transfer_timeout,		/* timeout on transfer */
22	int output					/* output on this FD */
23	);
24
25#endif
26