omarojo
omarojo

Reputation: 1257

Implement a SSH client on iPhone

Have anyone known of an open source project to implement SSH client on iPHone ? I actually need a terminal emulation to run a console application I have, I dont even need to get out of my sandbox. But Havent find any terminal emulation that doesnt infringe apple rules. (-MobileTerminal- just works on jailbroken, and does run my console app) and AFAIK its not possible to implement an Appstore valid version of it because of its forkpty() implementation.

still I see lots of SSH clients (terminal like) on the AppStore that send a recieve data. So there has to be a way to emulate a terminal/console thing on iPhone... thats what I need, but I see no one giving out some source code.

Upvotes: 6

Views: 6427

Answers (1)

Matt S.
Matt S.

Reputation: 1892

A quick google of mine shows this as a possible option: http://code.google.com/p/mobileterminal/

It's in the Cydia store as well, and should give you general direction. If you want to look at the final implementation, I recommend Panic Software's Prompt - http://www.panic.com/prompt/support.html

Upvotes: 1

Related Questions