Hi all,
I recently created an telnet client for iOS.
With a few minor changes I made it for OSX.
However, I'm receiving this kind of replies:
ÿûÿþ"ÿþÿýÿýÿýÿûÿþ"ÿþÿýÿýÿý
Instead of normal text.
how do I find out what encoding I need to use?
(Running freesshd on a windows server)
Using the following:
I only receive stuff like:
I recently created an telnet client for iOS.
With a few minor changes I made it for OSX.
However, I'm receiving this kind of replies:
ÿûÿþ"ÿþÿýÿýÿýÿûÿþ"ÿþÿýÿýÿý
Instead of normal text.
how do I find out what encoding I need to use?
(Running freesshd on a windows server)
Using the following:
Code:
while ([inputStream hasBytesAvailable]) {
streamOutput = nil;
len = [inputStream read:buffer maxLength:sizeof(buffer)];
if (len > 0) {
for(int a=1; a<30; a++) {
NSString * serverSaid = [[NSString alloc] initWithBytes:buffer length:len encoding: a];
NSLog(@"Server: %@", serverSaid);
}
}
}
Code:
2015-08-12 12:35:40.265 TerminalX[5997:348189] Server: ÿûÿþ"ÿþ
2015-08-12 12:35:40.265 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.271 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.271 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.271 TerminalX[5997:348189] Server: ÿûÿþ"ÿþ
2015-08-12 12:35:40.276 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.276 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.276 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.281 TerminalX[5997:348189] Server: ˙ű˙ţ"˙ţ
2015-08-12 12:35:40.281 TerminalX[5997:348189] Server: ǿ︢ÿﴃ�ﴟ
2015-08-12 12:35:40.286 TerminalX[5997:348189] Server: яыяю"яю
2015-08-12 12:35:40.287 TerminalX[5997:348189] Server: ÿûÿþ"ÿþ
2015-08-12 12:35:40.291 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.296 TerminalX[5997:348189] Server: ÿûÿş"ÿş
2015-08-12 12:35:40.296 TerminalX[5997:348189] Server: ˙ű˙ţ"˙ţ
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: ÿûÿþ"ÿþ
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: (null)
2015-08-12 12:35:40.297 TerminalX[5997:348189] Server: (null)
Last edited: