Adding libssh

This commit is contained in:
Nicolas Viennot
2013-06-10 00:58:12 -04:00
parent 220b2afb3c
commit 0f7ccda4fb
211 changed files with 59656 additions and 2 deletions

10
libssh/tests/generate.py Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/python
import os
a=""
for i in xrange(4096):
a+=chr(i % 256);
while True:
try:
os.write(1,a)
except:
exit(0)