01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */package org.apache.openejb.server.telnet;
17:
18: public interface TelnetCodes {
19:
20: public static final int SE = 240;
21:
22: public static final int NOP = 241;
23:
24: public static final int Data_Mark = 242;
25:
26: public static final int Break = 243;
27:
28: public static final int Interrupt_Process = 244;
29:
30: public static final int Abort_output = 245;
31:
32: public static final int Are_You_There = 246;
33:
34: public static final int Erase_character = 247;
35:
36: public static final int Erase_Line = 248;
37:
38: public static final int Go_ahead = 249;
39:
40: public static final int SB = 250;
41:
42: public static final int WILL = 251;
43:
44: public static final int WONT = 252;
45:
46: public static final int DO = 253;
47:
48: public static final int DONT = 254;
49:
50: public static final int IAC = 255;
51:
52: }
|