~ubuntu-branches/ubuntu/lucid/rlpr/lucid

« back to all changes in this revision

Viewing changes to src/rfc1179.h

  • Committer: Bazaar Package Importer
  • Author(s): Brian Mays
  • Date: 2002-03-20 11:21:15 UTC
  • Revision ID: james.westby@ubuntu.com-20020320112115-whl7m242ig71nu3h
Tags: upstream-2.02
ImportĀ upstreamĀ versionĀ 2.02

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef RFC1179_H
 
2
#define RFC1179_H
 
3
 
 
4
/*
 
5
 * Copyright (c) 1998 peter memishian (meem), meem@gnu.org
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2, or (at your option)
 
10
 * any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
15
 * General Public License for more details.
 
16
 *
 
17
 * $Id: rfc1179.h,v 1.2 1998/10/22 04:31:00 meem Exp $
 
18
 */
 
19
 
 
20
#include <sys/types.h>
 
21
 
 
22
/*
 
23
 * nothing in this header file should need to be changed.  these
 
24
 * constants are defined in rfc1179 and are not tunables.
 
25
 */
 
26
 
 
27
#define R_LPD_SRC_PORT_LOW      721
 
28
#define R_LPD_SRC_PORT_HIGH     731
 
29
#define R_LPD_DST_PORT          515
 
30
 
 
31
enum { DONE, PRINTQ, RECVJ, SENDQS, SENDQL, REMJ };
 
32
enum { ABORTJ = 1, RECVCF, RECVDF };
 
33
 
 
34
#endif  /* RFC1179_H */