home *** CD-ROM | disk | FTP | other *** search
/ Hackers Toolkit 2.0 / Hackers_Toolkit_v2.0.iso / HTML / archive / Texts / Rfc / RFC1179.TXT < prev    next >
Encoding:
Text File  |  1999-11-04  |  23.0 KB  |  797 lines

  1. Network Printing Working Group                 L. McLaughlin III, Editor
  2. Request for Comments:  1179                         The Wollongong Group
  3.                                                              August 1990
  4.  
  5.  
  6.                       Line Printer Daemon Protocol
  7.  
  8. Status of this Memo
  9.  
  10.    This RFC describes an existing print server protocol widely used on
  11.    the Internet for communicating between line printer daemons (both
  12.    clients and servers).  This memo is for informational purposes only,
  13.    and does not specify an Internet standard.  Please refer to the
  14.    current edition of the "IAB Official Protocol Standards" for the
  15.    standardization state and status of this protocol.  Distribution of
  16.    this memo is unlimited.
  17.  
  18. 1. Introduction
  19.  
  20.    The Berkeley versions of the Unix(tm) operating system provide line
  21.    printer spooling with a collection of programs: lpr (assign to
  22.    queue), lpq (display the queue), lprm (remove from queue), and lpc
  23.    (control the queue).  These programs interact with an autonomous
  24.    process called the line printer daemon.  This RFC describes the
  25.    protocols with which a line printer daemon client may control
  26.    printing.
  27.  
  28.    This memo is based almost entirely on the work of Robert Knight at
  29.    Princeton University.  I gratefully acknowledge his efforts in
  30.    deciphering the UNIX lpr protocol and producing earlier versions of
  31.    this document.
  32.  
  33. 2. Model of Printing Environment
  34.  
  35.    A group of hosts request services from a line printer daemon process
  36.    running on a host.  The services provided by the process are related
  37.    to printing jobs.  A printing job produces output from one file.
  38.    Each job will have a unique job number which is between 0 and 999,
  39.    inclusive.  The jobs are requested by users which have names.  These
  40.    user names may not start with a digit.
  41.  
  42. 3. Specification of the Protocol
  43.  
  44.    The specification includes file formats for the control and data
  45.    files as well as messages used by the protocol.
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52. McLaughlin                                                      [Page 1]
  53.  
  54.  
  55. RFC 1179                          LPR                        August 1990
  56.  
  57.  
  58. 3.1 Message formats
  59.  
  60.    LPR is a a TCP-based protocol.  The port on which a line printer
  61.    daemon listens is 515.  The source port must be in the range 721 to
  62.    731, inclusive.  A line printer daemon responds to commands send to
  63.    its port.  All commands begin with a single octet code, which is a
  64.    binary number which represents the requested function.  The code is
  65.    immediately followed by the ASCII name of the printer queue name on
  66.    which the function is to be performed.  If there are other operands
  67.    to the command, they are separated from the printer queue name with
  68.    white space (ASCII space, horizontal tab, vertical tab, and form
  69.    feed).  The end of the command is indicated with an ASCII line feed
  70.    character.
  71.  
  72. 4. Diagram Conventions
  73.  
  74.    The diagrams in the rest of this RFC use these conventions.  These
  75.    diagrams show the format of an octet stream sent to the server.  The
  76.    outermost box represents this stream.  Each box within the outermost
  77.    one shows one portion of the stream.  If the contents of the box is
  78.    two decimal digits, this indicates that the binary 8 bit value is to
  79.    be used.  If the contents is two uppercase letters, this indicates
  80.    that the corresponding ASCII control character is to be used.  An
  81.    exception to this is that the character SP can be interpreted as
  82.    white space.  (See the preceding section for a definition.)  If the
  83.    contents is a single letter, the ASCII code for this letter must be
  84.    sent.  Otherwise, the contents are intended to be mnemonic of the
  85.    contents of the field which is a sequence of octets.
  86.  
  87. 5. Daemon commands
  88.  
  89.    The verbs in the command names should be interpreted as statements
  90.    made to the daemon.  Thus, the command "Print any waiting jobs" is an
  91.    imperative to the line printer daemon to which it is sent.  A new
  92.    connection must be made for each command to be given to the daemon.
  93.  
  94. 5.1 01 - Print any waiting jobs
  95.  
  96.       +----+-------+----+
  97.       | 01 | Queue | LF |
  98.       +----+-------+----+
  99.       Command code - 1
  100.       Operand - Printer queue name
  101.  
  102.    This command starts the printing process if it not already running.
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109. McLaughlin                                                      [Page 2]
  110.  
  111.  
  112. RFC 1179                          LPR                        August 1990
  113.  
  114.  
  115. 5.2 02 - Receive a printer job
  116.  
  117.       +----+-------+----+
  118.       | 02 | Queue | LF |
  119.       +----+-------+----+
  120.       Command code - 2
  121.       Operand - Printer queue name
  122.  
  123.    Receiving a job is controlled by a second level of commands.  The
  124.    daemon is given commands by sending them over the same connection.
  125.    The commands are described in the next section (6).
  126.  
  127.    After this command is sent, the client must read an acknowledgement
  128.    octet from the daemon.  A positive acknowledgement is an octet of
  129.    zero bits.  A negative acknowledgement is an octet of any other
  130.    pattern.
  131.  
  132. 5.3 03 - Send queue state (short)
  133.  
  134.       +----+-------+----+------+----+
  135.       | 03 | Queue | SP | List | LF |
  136.       +----+-------+----+------+----+
  137.       Command code - 3
  138.       Operand 1 - Printer queue name
  139.       Other operands - User names or job numbers
  140.  
  141.    If the user names or job numbers or both are supplied then only those
  142.    jobs for those users or with those numbers will be sent.
  143.  
  144.    The response is an ASCII stream which describes the printer queue.
  145.    The stream continues until the connection closes.  Ends of lines are
  146.    indicated with ASCII LF control characters.  The lines may also
  147.    contain ASCII HT control characters.
  148.  
  149. 5.4 04 - Send queue state (long)
  150.  
  151.       +----+-------+----+------+----+
  152.       | 04 | Queue | SP | List | LF |
  153.       +----+-------+----+------+----+
  154.       Command code - 4
  155.       Operand 1 - Printer queue name
  156.       Other operands - User names or job numbers
  157.  
  158.    If the user names or job numbers or both are supplied then only those
  159.    jobs for those users or with those numbers will be sent.
  160.  
  161.    The response is an ASCII stream which describes the printer queue.
  162.    The stream continues until the connection closes.  Ends of lines are
  163.  
  164.  
  165.  
  166. McLaughlin                                                      [Page 3]
  167.  
  168.  
  169. RFC 1179                          LPR                        August 1990
  170.  
  171.  
  172.    indicated with ASCII LF control characters.  The lines may also
  173.    contain ASCII HT control characters.
  174.  
  175. 5.5 05 - Remove jobs
  176.  
  177.       +----+-------+----+-------+----+------+----+
  178.       | 05 | Queue | SP | Agent | SP | List | LF |
  179.       +----+-------+----+-------+----+------+----+
  180.       Command code - 5
  181.       Operand 1 - Printer queue name
  182.       Operand 2 - User name making request (the agent)
  183.       Other operands - User names or job numbers
  184.  
  185.    This command deletes the print jobs from the specified queue which
  186.    are listed as the other operands.  If only the agent is given, the
  187.    command is to delete the currently active job.  Unless the agent is
  188.    "root", it is not possible to delete a job which is not owned by the
  189.    user.  This is also the case for specifying user names instead of
  190.    numbers.  That is, agent "root" can delete jobs by user name but no
  191.    other agents can.
  192.  
  193. 6. Receive job subcommands
  194.  
  195.    These commands  are processed when  the line printer  daemon  has
  196.    been given the  receive job command.  The  daemon will continue  to
  197.    process commands until the connection is closed.
  198.  
  199.    After a subcommand is sent, the client must wait for an
  200.    acknowledgement from the daemon.  A positive acknowledgement is an
  201.    octet of zero bits.  A negative acknowledgement is an octet of any
  202.    other pattern.
  203.  
  204.    LPR clients SHOULD be able to sent the receive data file and receive
  205.    control file subcommands in either order.  LPR servers MUST be able
  206.    to receive the control file subcommand first and SHOULD be able to
  207.    receive the data file subcommand first.
  208.  
  209. 6.1 01 - Abort job
  210.  
  211.       Command code - 1
  212.       +----+----+
  213.       | 01 | LF |
  214.       +----+----+
  215.  
  216.    No operands should be supplied.  This subcommand will remove any
  217.    files which have been created during this "Receive job" command.
  218.  
  219.  
  220.  
  221.  
  222.  
  223. McLaughlin                                                      [Page 4]
  224.  
  225.  
  226. RFC 1179                          LPR                        August 1990
  227.  
  228.  
  229. 6.2 02 - Receive control file
  230.  
  231.       +----+-------+----+------+----+
  232.       | 02 | Count | SP | Name | LF |
  233.       +----+-------+----+------+----+
  234.       Command code - 2
  235.       Operand 1 - Number of bytes in control file
  236.       Operand 2 - Name of control file
  237.  
  238.    The control file must be an ASCII stream with the ends of lines
  239.    indicated by ASCII LF.  The total number of bytes in the stream is
  240.    sent as the first operand.  The name of the control file is sent as
  241.    the second.  It should start with ASCII "cfA", followed by a three
  242.    digit job number, followed by the host name which has constructed the
  243.    control file.  Acknowledgement processing must occur as usual after
  244.    the command is sent.
  245.  
  246.    The next "Operand 1" octets over the same TCP connection are the
  247.    intended contents of the control file.  Once all of the contents have
  248.    been delivered, an octet of zero bits is sent as an indication that
  249.    the file being sent is complete.  A second level of acknowledgement
  250.    processing must occur at this point.
  251.  
  252. 6.3 03 - Receive data file
  253.  
  254.       +----+-------+----+------+----+
  255.       | 03 | Count | SP | Name | LF |
  256.       +----+-------+----+------+----+
  257.       Command code - 3
  258.       Operand 1 - Number of bytes in data file
  259.       Operand 2 - Name of data file
  260.  
  261.    The data file may contain any 8 bit values at all.  The total number
  262.    of bytes in the stream may be sent as the first operand, otherwise
  263.    the field should be cleared to 0.  The name of the data file should
  264.    start with ASCII "dfA".  This should be followed by a three digit job
  265.    number.  The job number should be followed by the host name which has
  266.    constructed the data file.  Interpretation of the contents of the
  267.    data file is determined by the contents of the corresponding control
  268.    file.  If a data file length has been specified, the next "Operand 1"
  269.    octets over the same TCP connection are the intended contents of the
  270.    data file.  In this case, once all of the contents have been
  271.    delivered, an octet of zero bits is sent as an indication that the
  272.    file being sent is complete.  A second level of acknowledgement
  273.    processing must occur at this point.
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280. McLaughlin                                                      [Page 5]
  281.  
  282.  
  283. RFC 1179                          LPR                        August 1990
  284.  
  285.  
  286. 7. Control file lines
  287.  
  288.    This section  discusses the format of  the lines in the  control file
  289.    which is sent to the line printer daemon.
  290.  
  291.    Each line of the control file consists of a single, printable ASCII
  292.    character which represents a function to be performed when the file
  293.    is printed.  Interpretation of these command characters are case-
  294.    sensitive.  The rest of the line after the command character is the
  295.    command's operand.  No leading white space is permitted after the
  296.    command character.  The line ends with an ASCII new line.
  297.  
  298.    Those commands which have a lower case letter as a command code are
  299.    used to specify an actual printing request.  The commands which use
  300.    upper case are used to describe parametric values or background
  301.    conditions.
  302.  
  303.    Some commands must be included in every control file.  These are 'H'
  304.    (responsible host) and 'P' (responsible user).  Additionally, there
  305.    must be at least one lower case command to produce any output.
  306.  
  307. 7.1 C - Class for banner page
  308.  
  309.       +---+-------+----+
  310.       | C | Class | LF |
  311.       +---+-------+----+
  312.       Command code - 'C'
  313.       Operand - Name of class for banner pages
  314.  
  315.    This command sets the class name to be printed on the banner page.
  316.    The name must be 31 or fewer octets.  The name can be omitted.  If it
  317.    is, the name of the host on which the file is printed will be used.
  318.    The class is conventionally used to display the host from which the
  319.    printing job originated.  It will be ignored unless the print banner
  320.    command ('L') is also used.
  321.  
  322. 7.2 H - Host name
  323.  
  324.       +---+------+----+
  325.       | H | Host | LF |
  326.       +---+------+----+
  327.       Command code - 'H'
  328.       Operand - Name of host
  329.  
  330.    This command specifies the name of the host which is to be treated as
  331.    the source of the print job.  The command must be included in the
  332.    control file.  The name of the host must be 31 or fewer octets.
  333.  
  334.  
  335.  
  336.  
  337. McLaughlin                                                      [Page 6]
  338.  
  339.  
  340. RFC 1179                          LPR                        August 1990
  341.  
  342.  
  343. 7.3 I - Indent Printing
  344.  
  345.       +---+-------+----+
  346.       | I | count | LF |
  347.       +---+-------+----+
  348.       Command code - 'I'
  349.       Operand - Indenting count
  350.  
  351.    This command specifies that, for files which are printed with the
  352.    'f', of columns given.  (It is ignored for other output generating
  353.    commands.)  The identing count operand must be all decimal digits.
  354.  
  355. 7.4 J - Job name for banner page
  356.  
  357.       +---+----------+----+
  358.       | J | Job name | LF |
  359.       +---+----------+----+
  360.       Command code - 'J'
  361.       Operand - Job name
  362.  
  363.    This command sets the job name to be printed on the banner page.  The
  364.    name of the job must be 99 or fewer octets.  It can be omitted.  The
  365.    job name is conventionally used to display the name of the file or
  366.    files which were "printed".  It will be ignored unless the print
  367.    banner command ('L') is also used.
  368.  
  369. 7.5 L - Print banner page
  370.  
  371.       +---+------+----+
  372.       | L | User | LF |
  373.       +---+------+----+
  374.       Command code - 'L'
  375.       Operand - Name of user for burst pages
  376.  
  377.    This command causes the banner page to be printed.  The user name can
  378.    be omitted.  The class name for banner page and job name for banner
  379.    page commands must precede this command in the control file to be
  380.    effective.
  381.  
  382. 7.6 M - Mail When Printed
  383.  
  384.       +---+------+----+
  385.       | M | user | LF |
  386.       +---+------+----+
  387.       Command code - 'M'
  388.       Operand - User name
  389.  
  390.    This entry causes mail to be sent to the user given as the operand at
  391.  
  392.  
  393.  
  394. McLaughlin                                                      [Page 7]
  395.  
  396.  
  397. RFC 1179                          LPR                        August 1990
  398.  
  399.  
  400.    the host specified by the 'H' entry when the printing operation ends
  401.    (successfully or unsuccessfully).
  402.  
  403. 7.7 N - Name of source file
  404.  
  405.       +---+------+----+
  406.       | N | Name | LF |
  407.       +---+------+----+
  408.       Command code - 'N'
  409.       Operand - File name
  410.  
  411.    This command specifies the name of the file from which the data file
  412.    was constructed.  It is returned on a query and used in printing with
  413.    the 'p' command when no title has been given.  It must be 131 or
  414.    fewer octets.
  415.  
  416. 7.8 P - User identification
  417.  
  418.       +---+------+----+
  419.       | P | Name | LF |
  420.       +---+------+----+
  421.       Command code - 'P'
  422.       Operand - User id
  423.  
  424.    This command specifies the user identification of the entity
  425.    requesting the printing job.  This command must be included in the
  426.    control file.  The user identification must be 31 or fewer octets.
  427.  
  428. 7.9 S - Symbolic link data
  429.  
  430.       +---+--------+----+-------+----+
  431.       | S | device | SP | inode | LF |
  432.       +---+--------+----+-------+----+
  433.       Command code - 'S'
  434.       Operand 1 - Device number
  435.       Operand 2 - Inode number
  436.  
  437.    This command is used to record symbolic link data on a Unix system so
  438.    that changing a file's directory entry after a file is printed will
  439.    not print the new file.  It is ignored if the data file is not
  440.    symbolically linked.
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451. McLaughlin                                                      [Page 8]
  452.  
  453.  
  454. RFC 1179                          LPR                        August 1990
  455.  
  456.  
  457. 7.10 T - Title for pr
  458.  
  459.       +---+-------+----+
  460.       | T | title | LF |
  461.       +---+-------+----+
  462.       Command code - 'T'
  463.       Operand - Title text
  464.  
  465.    This command provides a title for a file which is to be printed with
  466.    either the 'p' command.  (It is ignored by all of the other printing
  467.    commands.)  The title must be 79 or fewer octets.
  468.  
  469. 7.11 U - Unlink data file
  470.  
  471.       +---+------+----+
  472.       | U | file | LF |
  473.       +---+------+----+
  474.       Command code - 'U'
  475.       Operand - File to unlink
  476.  
  477.    This command indicates that the specified file is no longer needed.
  478.    This should only be used for data files.
  479.  
  480. 7.12 W - Width of output
  481.  
  482.       +---+-------+----+
  483.       | W | width | LF |
  484.       +---+-------+----+
  485.       Command code - 'W'
  486.       Operand - Width count
  487.  
  488.    This command limits the output to the specified number of columns for
  489.    the 'f', 'l', and 'p' commands.  (It is ignored for other output
  490.    generating commands.)  The width count operand must be all decimal
  491.    digits.  It may be silently reduced to some lower value.  The default
  492.    value for the width is 132.
  493.  
  494. 7.13 1 - troff R font
  495.  
  496.       +---+------+----+
  497.       | 1 | file | LF |
  498.       +---+------+----+
  499.       Command code - '1'
  500.       Operand - File name
  501.  
  502.    This command specifies the file name for the troff R font.  [1] This
  503.    is the font which is printed using Times Roman by default.
  504.  
  505.  
  506.  
  507.  
  508. McLaughlin                                                      [Page 9]
  509.  
  510.  
  511. RFC 1179                          LPR                        August 1990
  512.  
  513.  
  514. 7.14 2 - troff I font
  515.  
  516.       +---+------+----+
  517.       | 2 | file | LF |
  518.       +---+------+----+
  519.       Command code - '2'
  520.       Operand - File name
  521.  
  522.    This command specifies the file name for the troff I font.  [1] This
  523.    is the font which is printed using Times Italic by default.
  524.  
  525. 7.15 3 - troff B font
  526.  
  527.       +---+------+----+
  528.       | 3 | file | LF |
  529.       +---+------+----+
  530.       Command code - '3'
  531.       Operand - File name
  532.  
  533.    This command specifies the file name for the troff B font.  [1] This
  534.    is the font which is printed using Times Bold by default.
  535.  
  536. 7.16 4 - troff S font
  537.  
  538.       +---+------+----+
  539.       | 4 | file | LF |
  540.       +---+------+----+
  541.       Command code - '4'
  542.       Operand - File name
  543.  
  544.    This command specifies the file name for the troff S font.  [1] This
  545.    is the font which is printed using Special Mathematical Font by
  546.    default.
  547.  
  548. 7.17 c - Plot CIF file
  549.  
  550.       +---+------+----+
  551.       | c | file | LF |
  552.       +---+------+----+
  553.       Command code - 'c'
  554.       Operand - File to plot
  555.  
  556.    This command causes the data file to be plotted, treating the data as
  557.    CIF (CalTech Intermediate Form) graphics language. [2]
  558.  
  559.  
  560.  
  561.  
  562.  
  563.  
  564.  
  565. McLaughlin                                                     [Page 10]
  566.  
  567.  
  568. RFC 1179                          LPR                        August 1990
  569.  
  570.  
  571. 7.18 d - Print DVI file
  572.  
  573.       +---+------+----+
  574.       | d | file | LF |
  575.       +---+------+----+
  576.       Command code - 'd'
  577.       Operand - File to print
  578.  
  579.    This command causes the data file to be printed, treating the data as
  580.    DVI (TeX output). [3]
  581.  
  582. 7.19 f - Print formatted file
  583.  
  584.       +---+------+----+
  585.       | f | file | LF |
  586.       +---+------+----+
  587.       Command code - 'f'
  588.       Operand - File to print
  589.  
  590.    This command cause the data file to be printed as a plain text file,
  591.    providing page breaks as necessary.  Any ASCII control characters
  592.    which are not in the following list are discarded: HT, CR, FF, LF,
  593.    and BS.
  594.  
  595. 7.20 g - Plot file
  596.  
  597.       +---+------+----+
  598.       | g | file | LF |
  599.       +---+------+----+
  600.       Command code - 'g'
  601.       Operand - File to plot
  602.  
  603.    This command causes the data file to be plotted, treating the data as
  604.    output from the Berkeley Unix plot library. [1]
  605.  
  606. 7.21 k - Reserved for use by Kerberized LPR clients and servers.
  607.  
  608. 7.22 l - Print file leaving control characters
  609.  
  610.       +---+------+----+
  611.       | l | file | LF |
  612.       +---+------+----+
  613.       Command code - 'l' (lower case L)
  614.       Operand - File to print
  615.  
  616.    This command causes the specified data file to printed without
  617.    filtering the control characters (as is done with the 'f' command).
  618.  
  619.  
  620.  
  621.  
  622. McLaughlin                                                     [Page 11]
  623.  
  624.  
  625. RFC 1179                          LPR                        August 1990
  626.  
  627.  
  628. 7.23 n - Print ditroff output file
  629.  
  630.       +---+------+----+
  631.       | n | file | LF |
  632.       +---+------+----+
  633.       Command code - 'n'
  634.       Operand - File to print
  635.  
  636.    This command prints the data file to be printed, treating the data as
  637.    ditroff output. [4]
  638.  
  639. 7.24 o - Print Postscript output file
  640.  
  641.       +---+------+----+
  642.       | o | file | LF |
  643.       +---+------+----+
  644.       Command code - 'o'
  645.       Operand - File to print
  646.  
  647.    This command prints the data file to be printed, treating the data as
  648.    standard Postscript input.
  649.  
  650. 7.25 p - Print file with 'pr' format
  651.  
  652.       +---+------+----+
  653.       | p | file | LF |
  654.       +---+------+----+
  655.       Command code - 'p'
  656.       Operand - File to print
  657.  
  658.    This command causes the data file to be printed with a heading, page
  659.    numbers, and pagination.  The heading should include the date and
  660.    time that printing was started, the title, and a page number
  661.    identifier followed by the page number.  The title is the name of
  662.    file as specified by the 'N' command, unless the 'T' command (title)
  663.    has been given.  After a page of text has been printed, a new page is
  664.    started with a new page number.  (There is no way to specify the
  665.    length of the page.)
  666.  
  667. 7.26 r - File to print with FORTRAN carriage control
  668.  
  669.       +---+------+----+
  670.       | r | file | LF |
  671.       +---+------+----+
  672.       Command code - 'r'
  673.       Operand - File to print
  674.  
  675.    This command causes the data file to be printed, interpreting the
  676.  
  677.  
  678.  
  679. McLaughlin                                                     [Page 12]
  680.  
  681.  
  682. RFC 1179                          LPR                        August 1990
  683.  
  684.  
  685.    first column of each line as FORTRAN carriage control.  The FORTRAN
  686.    standard limits this to blank, "1", "0", and "+" carriage controls.
  687.    Most FORTRAN programmers also expect "-" (triple space) to work as
  688.    well.
  689.  
  690. 7.27 t - Print troff output file
  691.  
  692.       +---+------+----+
  693.       | t | file | LF |
  694.       +---+------+----+
  695.       Command code - 't'
  696.       Operand - File to print
  697.  
  698.    This command prints the data file as Graphic Systems C/A/T
  699.    phototypesetter input.  [5] This is the standard output of the Unix
  700.    "troff" command.
  701.  
  702. 7.28 v - Print raster file
  703.  
  704.       +---+------+----+
  705.       | v | file | LF |
  706.       +---+------+----+
  707.       Command code - 'v'
  708.       Operand - File to print
  709.  
  710.    This command prints a Sun raster format file. [6]
  711.  
  712. 7.29 z - Reserved for future use with the Palladium print system.
  713.  
  714. REFERENCES and BIBLIOGRAPHY
  715.  
  716.    [1] Computer Science Research Group, "UNIX Programmer's Reference
  717.        Manual", USENIX, 1986.
  718.  
  719.    [2] Hon and Sequin, "A Guide to LSI Implementation", XEROX PARC,
  720.        1980.
  721.  
  722.    [3] Knuth, D., "TeX The Program".
  723.  
  724.    [4] Kernighan, B., "A Typesetter-independent TROFF".
  725.  
  726.    [5] "Model C/A/T Phototypesetter", Graphic Systems, Inc. Hudson, N.H.
  727.  
  728.    [6] Sun Microsystems, "Pixrect Reference Manual", Sun Microsystems,
  729.        Mountain View, CA, 1988.
  730.  
  731.  
  732.  
  733.  
  734.  
  735.  
  736. McLaughlin                                                     [Page 13]
  737.  
  738.  
  739. RFC 1179                          LPR                        August 1990
  740.  
  741.  
  742. Security Considerations
  743.  
  744.    Security issues are not discussed in this memo.
  745.  
  746. Author's Address
  747.  
  748.    Leo J. McLaughlin III
  749.    The Wollongong Group
  750.    1129 San Antonio Road
  751.    Palo Alto, CA 94303
  752.  
  753.    Phone: 415-962-7100
  754.  
  755.    EMail: ljm@twg.com
  756.  
  757.  
  758.  
  759.  
  760.  
  761.  
  762.  
  763.  
  764.  
  765.  
  766.  
  767.  
  768.  
  769.  
  770.  
  771.  
  772.  
  773.  
  774.  
  775.  
  776.  
  777.  
  778.  
  779.  
  780.  
  781.  
  782.  
  783.  
  784.  
  785.  
  786.  
  787.  
  788.  
  789.  
  790.  
  791.  
  792.  
  793. McLaughlin                                                     [Page 14]
  794.  
  795.  
  796.  
  797.