home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / rfc / 1000s / rfc1097.txt < prev    next >
Text File  |  1989-03-30  |  5KB  |  171 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                          B. Miller
  8. Request for Comments: 1097                                    CMU-NetDev
  9.                                                             1 April 1989
  10.  
  11.                     TELNET SUBLIMINAL-MESSAGE Option
  12.  
  13. Status of this Memo
  14.  
  15.    This RFC specifies a standard for the Internet community.  Hosts on
  16.    the Internet that display subliminal messages within the Telnet
  17.    protocol are expected to adopt and implement this standard.
  18.    Distribution of this memo is unlimited.
  19.  
  20. 1.  Command name and code.
  21.  
  22.    SUBLIMINAL-MESSAGE        257
  23.  
  24. 2.  Command meanings.
  25.  
  26.    IAC WILL SUBLIMINAL-MESSAGE
  27.  
  28.       The sender of this command REQUESTS permission to, or confirms
  29.       that it will, display subliminal messages.
  30.  
  31.    IAC WONT SUBLIMINAL-MESSAGE
  32.  
  33.       The sender of this command REFUSES to display subliminal messages.
  34.  
  35.    IAC DO SUBLIMINAL-MESSAGE
  36.  
  37.       The sender of this command REQUESTS that the receiver, or grants
  38.       the receiver permission to, display subliminal messages.
  39.  
  40.    IAC DONT SUBLIMINAL-MESSAGE
  41.  
  42.       The sender of this command DEMANDS that the receiver not display
  43.       subliminal messages.
  44.  
  45.    IAC SB SUBLIMINAL-MESSAGE <16-bit value> <16-bit value> <string> IAC
  46.       SE
  47.  
  48.       The sender specifies a message to be subliminaly displayed by the
  49.       remote host.  If the client has agreed (via the standard WILL WONT
  50.       DO DONT mechanism) to display subliminal messages, it must accept
  51.       this subnegotiation and attempt to display the message string on
  52.       the users console for the specified duration and continue to do so
  53.       at fixed intervals until another SUBLIMINAL-MESSAGE subnegotiation
  54.       is received.  The position and rendering of the message of
  55.  
  56.  
  57.  
  58. Miller                                                          [Page 1]
  59.  
  60. RFC 1097                       SUBLIMINAL                   1 April 1989
  61.  
  62.  
  63.       implementation dependent.
  64.  
  65.       The first 16-bit value specifies the duration of the message in
  66.       milliseconds.  It is sent MSB first.  The second 16-bit value
  67.       specifies the frequency with which the message is displayed.  It
  68.       represents the number of seconds between displays and is also sent
  69.       MSB first.  The final parameter is the message itself.
  70.  
  71.       The syntax for this subnegotiation is:
  72.  
  73.                 IAC SB SUBLIMINAL-MESSAGE
  74.                     DURATION[1] DURATION[0]
  75.                     FREQUENCY[1] FREQUENCY[0]
  76.                     MESSAGE_STRING
  77.                 IAC SE
  78.  
  79.       As required by the Telnet protocol, any occurence of 255 in the
  80.       subnegotiation must be doubled to destinguish it from the IAC
  81.       character (which has a value of 255).
  82.  
  83. 3.  Default.
  84.  
  85.    WONT SUBLIMINAL-MESSAGE
  86.  
  87.    DONT SUBLIMINAL-MESSAGE
  88.  
  89.    i.e., subliminal messages will not be displayed.
  90.  
  91. 4.  Motivation for the option
  92.  
  93.    Frequently the use of "Message of the day" banners and newsletters is
  94.    insufficient to convince stubborn users to upgrade to the latest
  95.    version of telnet.  Some users will use the same outdated version for
  96.    years.  I ran across this problem trying to convince people to use
  97.    the REMOTE-FLOW-CONTROL Telnet option.  These users need to be gently
  98.    "persuaded".
  99.  
  100. 5.  Description and implementation notes.
  101.  
  102.    The quality of the client implementation will depend on it's ability
  103.    to display and erase text strings in a small amount of time.  The
  104.    current implementation at CMU takes into acount terminal line speed,
  105.    advanced video capabilities, and screen phospher persistance when
  106.    calculating how long to wait before erasing a message.
  107.  
  108.    While it is permitted for the client to display the message text
  109.    "in-line", best results at obtained by printing the message at the
  110.    top or side of console screen where it will just catch the corner of
  111.  
  112.  
  113.  
  114. Miller                                                          [Page 2]
  115.  
  116. RFC 1097                       SUBLIMINAL                   1 April 1989
  117.  
  118.  
  119.    the user's visual field.
  120.  
  121.    A version is currently under development at CMU to display the
  122.    message using morse-code over the keyboard caps-lock LED.
  123.  
  124. 6.  Examples
  125.  
  126.    In the following example all numbers are in decimal notation.
  127.  
  128.    1.  Server suggests and client agrees to use SUBLIMINAL-MESSAGE.
  129.  
  130.       (Server sends) IAC DO SUBLIMINAL-MESSAGE
  131.       (Client sends) IAC WILL SUBLIMINAL-MESSAGE
  132.       (Server sends) IAC SB SUBLIMINAL-MESSAGE 0 5 0 20 "Use VMS" IAC SE
  133.  
  134.          [The server is "suggesting" that the user employ a stable
  135.          operating system, not an unreasonable request...]
  136.  
  137.       The client should immediately begin displaying the message and
  138.       should continue to do so at regular intervals.
  139.  
  140.    2.  Server preempts previous subliminal message.
  141.  
  142.       (Server sends) IAC SB SUBLIMINAL-MESSAGE 0 5 0 20 "Go home" IAC SE
  143.  
  144.       The client should now no longer display the previous message and
  145.       should immediately begin displaying the new one.
  146.  
  147.    3.  Server has messed with user enough for one day.
  148.  
  149.       (Server sends) IAC SB SUBLIMINAL-MESSAGE 0 0 0 0 "" IAC SE
  150.  
  151.       The client must cease display of any subliminal messages.
  152.  
  153. 7.  Acknowledgements.
  154.  
  155.    We do things just a little sneakier here at CMU.
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170. Miller                                                          [Page 3]
  171.