diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-10-15 14:18:32 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-10-15 14:18:32 +0000 |
commit | de7922c77175f625744926f5c34e7d5367d5ca12 (patch) | |
tree | 689b1cf17ca96c3f18da426418c817fbf518918c /src/protocoltelnet.h | |
parent | e72d6077b475bc6142afc3b5967db113922c76f5 (diff) | |
download | libbu++-de7922c77175f625744926f5c34e7d5367d5ca12.tar.gz libbu++-de7922c77175f625744926f5c34e7d5367d5ca12.tar.bz2 libbu++-de7922c77175f625744926f5c34e7d5367d5ca12.tar.xz libbu++-de7922c77175f625744926f5c34e7d5367d5ca12.zip |
Minor changes, ProtcolTelnet now intellegently converts lone CR characters in
the outgoing stream into CRLF sequences. Eventually there should be an option
to convert these to CR NUL sequences as well (lone CRs are not allowed).
Diffstat (limited to '')
-rw-r--r-- | src/protocoltelnet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocoltelnet.h b/src/protocoltelnet.h index f773f1e..82d6398 100644 --- a/src/protocoltelnet.h +++ b/src/protocoltelnet.h | |||
@@ -110,7 +110,7 @@ namespace Bu | |||
110 | bool isCanonical(); | 110 | bool isCanonical(); |
111 | 111 | ||
112 | void write( const Bu::FString &sData ); | 112 | void write( const Bu::FString &sData ); |
113 | void write( char *pData, int iSize ); | 113 | void write( const char *pData, int iSize ); |
114 | void write( char cData ); | 114 | void write( char cData ); |
115 | 115 | ||
116 | public: | 116 | public: |