commands over SSH

BlitzMax Forums/BlitzMax Programming/commands over SSH

ckob(Posted 2007) [#1]
Is it possible for me to send/recieve commands via SSH to a linux server using bmax?


insomnia(Posted 2007) [#2]
sure.. just read the specification!

http://www.google.com/search?hl=en&q=ssh+protocol&btnG=Google+Search

http://tools.ietf.org/html/rfc4250
http://tools.ietf.org/html/rfc4251
http://tools.ietf.org/html/rfc4252
http://tools.ietf.org/html/rfc4253
http://tools.ietf.org/html/rfc4254
http://tools.ietf.org/html/rfc4255
http://tools.ietf.org/html/rfc4256
http://tools.ietf.org/html/rfc4335
http://tools.ietf.org/html/rfc4345
http://tools.ietf.org/html/rfc4419
http://tools.ietf.org/html/rfc4432
http://tools.ietf.org/html/rfc4462
http://tools.ietf.org/html/rfc4716
http://tools.ietf.org/html/rfc4819

and so on...


Raph(Posted 2007) [#3]
I ran into this not long ago. I ended up with someone creating a custom C++ wrapper for just the parts of the "easy" CURL implementation that I needed, and then using Bmax to wrap that.