summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-08-28 11:29:06 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-08-28 11:29:06 +0200
commitd9912f986e0f56d113d40d87977a7a6a1f30327c (patch)
treea0b1a2998d4c01992908f27ccceb85e631b937de /README
parentd7fc8f1445653b43e9502a617f12db110f13f69d (diff)
downloadcssh-d9912f986e0f56d113d40d87977a7a6a1f30327c.tar.gz
cssh-d9912f986e0f56d113d40d87977a7a6a1f30327c.tar.bz2
updated README
Diffstat (limited to 'README')
-rw-r--r--README11
1 files changed, 8 insertions, 3 deletions
diff --git a/README b/README
index cbb66a7..91dd532 100644
--- a/README
+++ b/README
@@ -44,9 +44,11 @@ References
[1] http://mrjones69ceu.blogspot.ch/2014/01/embedding-ssh-service.html
A blog on almost the thing I want, no finished code found though.
-[2] https://www.libssh.org/
+[2] https://www.libssh.org/: all basic SSH session functions and SCP
+ and other helper functions.
-[3] http://sites.dparrish.com/libcli
+[3] http://sites.dparrish.com/libcli: Cisco style CLI interface for
+ the interactive mode. So we can actually "log in" to the cluster.
[4] http://code.google.com/p/parallel-ssh/
PSSH Tools in Python. The tools we want to mimic but in C.
@@ -55,4 +57,7 @@ References
GNU parallel: very nice and powerfull, we want something simpler.
[6] https://github.com/badoo/libpssh
- Libary for multiple SSH connections using libevent and libssh2
+ Libary for multiple SSH connections using libevent and libssh2.
+ A little bit to complicated for my taste, I prefer direct asynchronous
+ I/O without an abstraction library like libevent. Also I prefer to
+ use libssh unpatched.