Java Doc for Telnet.java in  » Scripting » Kawa » kawa » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Scripting » Kawa » kawa 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   kawa.Telnet

Telnet
public class Telnet implements Runnable(Code)
Encapsulates the state of a telnet connection. When run as an application, is a a minimal telnet client.


Field Summary
final public static  intDO
     Indicates the request that the other party perform, or confirmation that you are expecting the other party to perform, the indicated option.
final public static  intDONT
    
final public static  intECHO
    
final static  intEOF
    
final static  intIAC
     The "Interpret As Command" prefix code.
final static  intIP
    
final static  intLINEMODE
    
final static  intNAWS
    
final static  intNOP
    
final static  intOPTION_NO
     The option is disabled, and no negotiating is in progress.
final static  intOPTION_WANTNO
     We sent out DONT/WONT and are waiting for confirming WONT/DONT.
final static  intOPTION_WANTNO_OPPOSITE
     Like WANTNO, but we changed our mind.
final static  intOPTION_WANTYES
     We sent out DO/WILL and are waiting for confirming WILL/DO.
final static  intOPTION_WANTYES_OPPOSITE
     Like WANTYES, but we changed our mind.
final static  intOPTION_YES
     The option is enabled, and no negotiating is in progress.
final static  intSB
     Indicates that what follows is subnegotiation of the indicated option.
final static  intSE
    
final public static  intSUPPRESS_GO_AHEAD
    
final static  intTM
    
final static  intTTYPE
    
final public static  intWILL
     Indicates the desire to begin performing, or confirmation that you are now performing, the indicated option.
final public static  intWONT
     Indicates the refusal to perform,or continue performing, the indicated option.
 TelnetInputStreamin
    
 booleanisServer
    
final  byte[]optionsState
     Used to store the the current state of negotiation of telnet options. For example, for option LINEMODE (34), (telnet_options_state[34] & 7) is the state of the option on this side, and ((telnet_options_state[34] >> 3) & 7) is the state on the other side. The 3 bits for each side can be any of OPTION_NO though OPTION_YES. The option is only enabled if the value is OPTION_YES. See RFC 1143.
 TelnetOutputStreamout
    
final  bytepreferredLineMode
    
 java.io.InputStreamsin
    
 java.io.OutputStreamsout
    
public  byte[]terminalType
    
public  shortwindowHeightwindowWidth
    

Constructor Summary
public  Telnet(java.net.Socket socket, boolean isServer)
    

Method Summary
 booleanchange(int command, int option)
     Actually (try to) change the state for an option. Return false is we don't know how or don't want to. command is DO if we're enabling on this side; DONT if we're disabling on this side; WILL if we're enabling for the other side; WONT if we're disabling for the other side. You should not call this function directly. Instead, call request to send a request to the other side (but with DO/WILL and DONT/WONT switched).
public  TelnetInputStreamgetInputStream()
    
public  TelnetOutputStreamgetOutputStream()
    
 voidhandle(int command, int option)
     Handle a request from the other side. Command is one of DO, DONT, WILL, WONT.
public static  voidmain(String[] args)
    
public  voidrequest(int command, int option)
     Request (from this side) a new option state. Command is one of DO, DONT, WILL, WONT.
public  voidrun()
    
public  voidsubCommand(byte[] buf, int off, int len)
     Handle a sub-command (SB-sequence) that we received.
static  voidusage()
    

Field Detail
DO
final public static int DO(Code)
Indicates the request that the other party perform, or confirmation that you are expecting the other party to perform, the indicated option.



DONT
final public static int DONT(Code)



ECHO
final public static int ECHO(Code)



EOF
final static int EOF(Code)



IAC
final static int IAC(Code)
The "Interpret As Command" prefix code.



IP
final static int IP(Code)



LINEMODE
final static int LINEMODE(Code)



NAWS
final static int NAWS(Code)



NOP
final static int NOP(Code)



OPTION_NO
final static int OPTION_NO(Code)
The option is disabled, and no negotiating is in progress.



OPTION_WANTNO
final static int OPTION_WANTNO(Code)
We sent out DONT/WONT and are waiting for confirming WONT/DONT.



OPTION_WANTNO_OPPOSITE
final static int OPTION_WANTNO_OPPOSITE(Code)
Like WANTNO, but we changed our mind.



OPTION_WANTYES
final static int OPTION_WANTYES(Code)
We sent out DO/WILL and are waiting for confirming WILL/DO.



OPTION_WANTYES_OPPOSITE
final static int OPTION_WANTYES_OPPOSITE(Code)
Like WANTYES, but we changed our mind.



OPTION_YES
final static int OPTION_YES(Code)
The option is enabled, and no negotiating is in progress.



SB
final static int SB(Code)
Indicates that what follows is subnegotiation of the indicated option.



SE
final static int SE(Code)



SUPPRESS_GO_AHEAD
final public static int SUPPRESS_GO_AHEAD(Code)



TM
final static int TM(Code)



TTYPE
final static int TTYPE(Code)



WILL
final public static int WILL(Code)
Indicates the desire to begin performing, or confirmation that you are now performing, the indicated option.



WONT
final public static int WONT(Code)
Indicates the refusal to perform,or continue performing, the indicated option.



in
TelnetInputStream in(Code)



isServer
boolean isServer(Code)



optionsState
final byte[] optionsState(Code)
Used to store the the current state of negotiation of telnet options. For example, for option LINEMODE (34), (telnet_options_state[34] & 7) is the state of the option on this side, and ((telnet_options_state[34] >> 3) & 7) is the state on the other side. The 3 bits for each side can be any of OPTION_NO though OPTION_YES. The option is only enabled if the value is OPTION_YES. See RFC 1143.



out
TelnetOutputStream out(Code)



preferredLineMode
final byte preferredLineMode(Code)



sin
java.io.InputStream sin(Code)



sout
java.io.OutputStream sout(Code)



terminalType
public byte[] terminalType(Code)



windowHeightwindowWidth
public short windowHeightwindowWidth(Code)




Constructor Detail
Telnet
public Telnet(java.net.Socket socket, boolean isServer) throws java.io.IOException(Code)




Method Detail
change
boolean change(int command, int option)(Code)
Actually (try to) change the state for an option. Return false is we don't know how or don't want to. command is DO if we're enabling on this side; DONT if we're disabling on this side; WILL if we're enabling for the other side; WONT if we're disabling for the other side. You should not call this function directly. Instead, call request to send a request to the other side (but with DO/WILL and DONT/WONT switched). Then, when confirmation comes back, it is handled by the handle method, which calls change. The optionsState array may not have been updated yet.



getInputStream
public TelnetInputStream getInputStream()(Code)



getOutputStream
public TelnetOutputStream getOutputStream()(Code)



handle
void handle(int command, int option) throws java.io.IOException(Code)
Handle a request from the other side. Command is one of DO, DONT, WILL, WONT.



main
public static void main(String[] args)(Code)



request
public void request(int command, int option) throws java.io.IOException(Code)
Request (from this side) a new option state. Command is one of DO, DONT, WILL, WONT.



run
public void run()(Code)



subCommand
public void subCommand(byte[] buf, int off, int len)(Code)
Handle a sub-command (SB-sequence) that we received.



usage
static void usage()(Code)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.