aboutsummaryrefslogtreecommitdiff
path: root/sample.c
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2008-12-22 09:50:40 +0000
committerAndreas Schneider <mail@cynapses.org>2008-12-22 09:50:40 +0000
commitc3e026c3034d5d51f011a75b191f46c3891069cf (patch)
treee8a5e16a5443bfa2fb0de3d682934b82cd164782 /sample.c
parenta104c2eda38d2fbf81285e0223ed755783792169 (diff)
downloadlibssh-c3e026c3034d5d51f011a75b191f46c3891069cf.tar.gz
libssh-c3e026c3034d5d51f011a75b191f46c3891069cf.tar.xz
libssh-c3e026c3034d5d51f011a75b191f46c3891069cf.zip
Create POSIX like sftp functions.
This breaks the API and will be libssh 0.3. git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@195 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'sample.c')
-rw-r--r--sample.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sample.c b/sample.c
index 6020066e..27111a82 100644
--- a/sample.c
+++ b/sample.c
@@ -290,20 +290,20 @@ void do_sftp(SSH_SESSION *session){
ssh_say(0,"error : %s\n",ssh_get_error(session));
return;
}
- if(sftp_dir_close(dir)){
+ if(sftp_closedir(dir)){
ssh_say(0,"Error : %s\n",ssh_get_error(session));
return;
}
/* this will open a file and copy it into your /home directory */
/* the small buffer size was intended to stress the library. of course, you can use a buffer till 20kbytes without problem */
- fichier=sftp_open(sftp,"/usr/bin/ssh",O_RDONLY,NULL);
+ fichier=sftp_open(sftp,"/usr/bin/ssh",O_RDONLY, 0);
if(!fichier){
ssh_say(0,"Error opening /usr/bin/ssh : %s\n",ssh_get_error(session));
return;
}
/* open a file for writing... */
- to=sftp_open(sftp,"ssh-copy",O_WRONLY | O_CREAT,NULL);
+ to=sftp_open(sftp,"ssh-copy",O_WRONLY | O_CREAT, 0);
if(!to){
ssh_say(0,"Error opening ssh-copy for writing : %s\n",ssh_get_error(session));
return;
@@ -316,11 +316,11 @@ void do_sftp(SSH_SESSION *session){
}
printf("finished\n");
if(len<0)
- ssh_say(0,"Error reading file : %s\n",ssh_get_error(session));
- sftp_file_close(fichier);
- sftp_file_close(to);
- printf("fichiers ferm�\n");
- to=sftp_open(sftp,"/tmp/grosfichier",O_WRONLY|O_CREAT,NULL);
+ ssh_say(0,"Error reading file : %s\n",ssh_get_error(session));
+ sftp_close(fichier);
+ sftp_close(to);
+ printf("fichiers ferm\n");
+ to=sftp_open(sftp,"/tmp/grosfichier",O_WRONLY|O_CREAT, 0644);
for(i=0;i<1000;++i){
len=sftp_write(to,data,8000);
printf("wrote %d bytes\n",len);
@@ -328,7 +328,7 @@ void do_sftp(SSH_SESSION *session){
printf("chunk %d : %d (%s)\n",i,len,ssh_get_error(session));
}
}
- sftp_file_close(to);
+ sftp_close(to);
/* close the sftp session */
sftp_free(sftp);
printf("session sftp termin�\n");