telnet_begin_sb and telnet_finish_sb functions

This commit is contained in:
Sean Middleditch 2009-11-03 18:57:15 -08:00
parent 0457afb6a3
commit 65a53b0010
2 changed files with 42 additions and 0 deletions

22
telnet_begin_sb.3 Normal file
View File

@ -0,0 +1,22 @@
.TH telnet_begin_sb 3 LIBTELNET "" "TELNET Library"
.SH NAME
\fBtelnet_begin_sb\fP - begin a TELNET sub-negotiation command
.SH SYNOPSIS
.PP
\fB#include <libtelnet.h>\fP
.sp
.B "void telnet_begin_sb(telnet_t *\fBtelnet\fR, unsigned char \fBopt\fR);"
.SH DESCRIPTION
.PP
The \fBtelnet_begin_sb\fR function sends the initial TELNET byte sequence to begin a TELNET sub-negotiation command. All data sent over the connecton following this call will be part of the sub-negotiation comman data. A call to \fBtelnet_finish_sb\fR MUST be made to complete the sub-negotiation.
The parameter \fItelnet\fP is a state tracker instance created by a prior call to \fBtelnet_init\fP.
The parameter \fIopt\fP is the TELNET option code for the sub-negotiation option being started.
.SH SEE ALSO
.PP
\fBlibtelnet\fR(3), \fBtelnet_send\fR(3), \fBtelnet_finish_sb\fR(3)

20
telnet_finish_sb.3 Normal file
View File

@ -0,0 +1,20 @@
.TH telnet_finish_sb 3 LIBTELNET "" "TELNET Library"
.SH NAME
\fBtelnet_finish_sb\fP - finish a TELNET sub-negotiation command
.SH SYNOPSIS
.PP
\fB#include <libtelnet.h>\fP
.sp
.B "void telnet_finish_sb(telnet_t *\fBtelnet\fR);"
.SH DESCRIPTION
.PP
The \fBtelnet_finish_sb\fR function sends the TELNET command to complete a sub-negotiation sequence. This must be called after a call to \fBtelnet_begin_sb\fR to complete a sub-negotiation.
The parameter \fItelnet\fP is a state tracker instance created by a prior call to \fBtelnet_init\fP.
.SH SEE ALSO
.PP
\fBlibtelnet\fR(3), \fBtelnet_send\fR(3), \fBtelnet_begin_sb\fR(3)