01: /* ====================================================================
02: * The LateralNZ Software License, Version 1.0
03: *
04: * Copyright (c) 2003 LateralNZ. All rights reserved.
05: *
06: * Redistribution and use in source and binary forms, with or without
07: * modification, are permitted provided that the following conditions
08: * are met:
09: *
10: * 1. Redistributions of source code must retain the above copyright
11: * notice, this list of conditions and the following disclaimer.
12: *
13: * 2. Redistributions in binary form must reproduce the above copyright
14: * notice, this list of conditions and the following disclaimer in
15: * the documentation and/or other materials provided with the
16: * distribution.
17: *
18: * 3. The end-user documentation included with the redistribution,
19: * if any, must include the following acknowledgment:
20: * "This product includes software developed by
21: * LateralNZ (http://www.lateralnz.org/) and other third parties."
22: * Alternately, this acknowledgment may appear in the software itself,
23: * if and wherever such third-party acknowledgments normally appear.
24: *
25: * 4. The names "LateralNZ" must not be used to endorse or promote
26: * products derived from this software without prior written
27: * permission. For written permission, please
28: * contact oss@lateralnz.org.
29: *
30: * 5. Products derived from this software may not be called "Panther",
31: * or "Lateral" or "LateralNZ", nor may "PANTHER" or "LATERAL" or
32: * "LATERALNZ" appear in their name, without prior written
33: * permission of LateralNZ.
34: *
35: * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
36: * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
37: * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
38: * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
39: * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40: * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41: * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
42: * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
43: * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
44: * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
45: * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46: * SUCH DAMAGE.
47: * ====================================================================
48: *
49: * This software consists of voluntary contributions made by many
50: * individuals on behalf of LateralNZ. For more
51: * information on Lateral, please see http://www.lateralnz.com/ or
52: * http://www.lateralnz.org
53: *
54: */
55: package org.lateralnz.common.telnet;
56:
57: public interface Constants {
58:
59: public static final int NULL = 0;
60: public static final int ECHO = 1;
61: public static final int SUPPRESS_GO_AHEAD = 3;
62: public static final int STATUS = 5;
63: public static final int TIMING_MARK = 6;
64: public static final int BACKSPACE = 8;
65: public static final int LINEFEED = 10;
66: public static final int CARRIAGE_RETURN = 13;
67: public static final int TERMINAL_TYPE = 24;
68: public static final int ESCAPE = 27;
69: public static final int WINDOW_SIZE = 31;
70: public static final int TERMINAL_SPEED = 32;
71: public static final int REMOTE_FLOW_CONTROL = 33;
72: public static final int LINEMODE = 34;
73: public static final int ENVIRONMENT_VARS = 36;
74:
75: public static final int SE = 240;
76: public static final int NOP = 241;
77: public static final int DM = 242;
78: public static final int BRK = 243;
79: public static final int IP = 244;
80: public static final int AO = 245;
81: public static final int AYT = 246;
82: public static final int EC = 247;
83: public static final int EL = 248;
84: public static final int GA = 249;
85: public static final int SB = 250;
86: public static final int WILL = 251;
87: public static final int WONT = 252;
88: public static final int DO = 253;
89: public static final int DONT = 254;
90: public static final int IAC = 255;
91:
92: public static final int ESC_UP = 1;
93: public static final int ESC_DOWN = 2;
94: public static final int ESC_LEFT = 3;
95: public static final int ESC_RIGHT = 4;
96: }
|