libssh is a mulitplatform C library implementing the SSHv2 and SSHv1 protocol on client and server side.
0
votes
1answer
112 views
Does libssh supports sftp server functionality?
In my project i need to transfer files between a server and multiple clients.
The communication between client and server should be encrypted,
there should be an authentication by username and ...
0
votes
0answers
16 views
Problems compiling libssh2 with mingw
I'm new to compiling linux stuff so I'm going to need a little guidance here.
I followed these steps http://kemovitra.blogspot.com/2012/09/how-to-compile-libssh2-for-windows-with.html
And it ...
-2
votes
0answers
25 views
How to duplicate a SSH session with libssh? [closed]
I run into a problem when I try to duplicate a ssh session with libssh. I don't know whether the libssh had provided the API, If anyone who know this, please help me, thank you so much!
0
votes
0answers
24 views
Send 'enter' to remote process with libssh
I'm using libssh to log into a terminal and then run a ncurses application.
I'm following this tutorial, sending one character at the time:
http://api.libssh.org/master/libssh_tutor_shell.html
The ...
0
votes
2answers
22 views
How much does a program that has to talk to arbitrary servers need SSH v1 support?
I'm starting a new project, a cross-platform C++ program that will need to connect to servers of the user's choice using SSH code built into the program. I'm trying to decide between libssh and ...
0
votes
0answers
34 views
How to use libssh library in Dev cpp?
I am aware the Dev-cpp isn't the best, and I don't usually use it, but lets stay off that topic for now.
I don't have much experience working with none standard libraries, so I don't fully ...
0
votes
0answers
159 views
Qt C++ how to use libssh as server?
I am working on a Windows version of a server application that communicates with a web application. The web application originally worked with a Linux server, and would SSH into Linux to execute ...
2
votes
2answers
109 views
How to run makefile with libssh?
I have a problem with libssh (libssh.org). I need to run a makefile on the remote server. I do it with a command "channel_request_exec":
int SSHExecCmd (void(* MessSender)(char* CurMessage, bool ...
1
vote
1answer
129 views
SSH tunnel using libssh and c lang
I am trying to use libssh to open an SSH tunnel.
Basically, I have two hosts in the way. First, I would need to SSH to the first one (I have already done this part), then I would need to SSH from ...
0
votes
2answers
63 views
Memory-leaks when using libssh
I am trying to use libssh in my application, but I keep getting memory leaks. The most simplistic code, I am trying, is:
#include <libssh/libssh.h>
#define SSH_NO_CPP_EXCEPTIONS
assert(0 == ...
0
votes
1answer
122 views
Libssh Server Authentication in VS2008 not going well
I am using the libssh library for creating a connection to an ssh server created on a remote server. Everything goes well with the connection until the code gets the public key from the server and ...
0
votes
2answers
53 views
Libssh, X11 forewarding
i am trying to user X11 forwarding with libssh. Because i have not found good examples for doing so, can anyone give me some example how to use X11 with libssh?
Thanks!
1
vote
0answers
41 views
Undefined reference to `ssh_new' [duplicate]
Possible Duplicate:
Noobish, linker errors when compiling against glib…?
I have the following Makefile:
remote: RemoteCMD.o sshlib.o
g++ -L/usr/include/libssh -lssh RemoteCMD.o ...
2
votes
1answer
389 views
How to copy a file in C/C++ with libssh and sftp
I'm posting here because I need help with some code relating with libssh.
I read all the official documentation here but still I don't understand the things i need to do if someone can en light me I ...
0
votes
1answer
191 views
Custom commands with libssh
I am using SSH to communicate with a condor server and need to call commands for custom control (i.e. condor_submit, condor_make, condor_q, etc.). Having downloaded and successfully integrated libSSH ...
0
votes
1answer
92 views
libssh2 session cleanup without blocking?
My app uses libssh2 to communicate over SSH, and generally works fine. One problem I have is when the remote host dies unexpectedly -- the remote host in this case is an embedded device that can lose ...
0
votes
0answers
88 views
C++ libssh - Compute SHA1 on Remote Server
What would be the best way to compute the SHA1 of a remote file using C++ libssh (http://api.libssh.org/master/) without transferring the file back to the local machine.
The remote server may not ...
0
votes
1answer
174 views
How to get user feedback from QThread::run(), e.g. QMessageBox?
I know that it's bad to run any kind of GUI widget from within a separate thread. For just messages, this can be overcome with signals to the main thread. But what if the thread needs a user input, ...
1
vote
2answers
1k views
ssh2.so unable to load on CentOS 5
I've been trying to install the SSH2 libraries for php onto a web server running CentOS 5 with PHP 5.1.6 and was able to successfully install all the dependencies, but after restarting the web server ...
2
votes
1answer
415 views
static library for libssh causes unresolved symbols in vc10
I have a C++ dll project in visual studio 10 that I am trying to use libssh for. I would like to statically link the libssh functionality. When I use the non-static libary and include the dll during ...
0
votes
0answers
337 views
libssh not return command results
I am using libssh to send a remote command to a computer. This command is real time so I am trying to get databack as it is generated. Basically I am hexdumping a mouse event and I want that data as ...
0
votes
3answers
121 views
Why does this program pass parameters by reference
I am writing some code for a linux program I am working on that requires libssh. I was looking at their tutorial page and I saw that it passes all the parameters to ssh_options_set() by reference. Why ...
4
votes
3answers
1k views
How to use libssh in VS10
How can I implement libssh as a library my compiler will recognize? I'm using Visual Studio 2010 C++, and I've included the Boost library with no problems, but the process I did with Boost is strange, ...
0
votes
1answer
289 views
Diagnosing libssh2 SFTP blocking call
I'm using the most recent Git tree of libssh2 to perform some SFTP work. I'm using the non-blocking interface.
I'm successful in establishing a connection to the SFTP server, logging in, and ...
0
votes
1answer
862 views
libcurl with libssh2 - one or more libs available at link-time are not available run-time
I get the following error when trying to ./configure libcurl 7.22.0
one or more libs available at link-time are not available run-time. Libs used at link-time: -lssh2 -lssl -lcrypto -lrt -lz
...
2
votes
1answer
339 views
ssh gateway in python - colors available?
I am using python bindings for libssh2 to connect to SSH2 server programmatically. The received output should be forwarded to a remote server and displayed there.
The code below works correctly, but ...
0
votes
1answer
316 views
problem of using ssh_connect API in windows
I have tested a simple code using libssh on OS X and it worked simply find.
But when I port this code on Windows7 using vc10 it doesn't work correctly.
The ssh_connect API blocks and not progress any ...
0
votes
1answer
71 views
ssh client returning error “Couldn't apply options”
I am getting "Couldn't apply options" while connecting to a SSH server.
When I checked the source code of the library I found the following code in the client.c
which is returning the error.
ret = ...
1
vote
0answers
519 views
libssh2 SSH client - closing after data
I've written an SSH client using the libssh2 library for C. The client is essentially a wrapper for data transfer, I wish to continue using the SSH protocol.
Everything works great except that, when ...
1
vote
0answers
504 views
libssh2 - read from Windows based OpenSSH server outputs bogus message
I'm developing a SSH client in Cocoa using libssh2 and everything works fine if I connect to a Linux/OSX server.
But for some reason if I connect to a Windows based OpenSSH server my commands are not ...
1
vote
2answers
1k views
libssh2 and C++
When I try to use libssh2 in my C++ class, I keep getting the following errors:
undefined reference to `libssh2_session_init_ex'
undefined reference to `libssh2_session_startup'
If I do the same ...
1
vote
1answer
186 views
Obtaining status from a remote executed process
I am invoking a remote process using libcURLs libssh2. The remote server is a Linux (CentOS) and the client is an Windows XP. Also am using Qt 4.6 and C++.The processes are some third party ...
0
votes
1answer
457 views
Compilation of libssh2 for the iPhone fails
Currently i'm trying to compile libssh2 to run on the iPhone.
On my research i've found those instructions how to compile it. But when i try it i always get
configure: error: C preprocessor ...
2
votes
1answer
2k views
phpseclib vs libssh2
In one of my projects am going to connect with alot of servers remotely through SSH using PHP.
There are two solutions for it, phpseclib and the ssh2 PECL Extension for PHP which is based on the ...
3
votes
1answer
2k views
Dyld: Library not loaded
I am trying to link the library libssh2.1.dylib to my iPhone Xcode project but I get this error when I try to link it. If I don't add this as a framework I get Symbols not found error. Now ...
2
votes
2answers
2k views
Whats the difference between armv6 and i386?
I am trying to link libssh2.dylib (a 3rd party library compiled by Matthew Wilkinson using libssh2 library from http://www.libssh2.org) to my xcode project but when I try the following code:
const ...
1
vote
1answer
1k views
Who can build a libssh2.a for iPhone
Who can build a libssh2.a for iPhone
it's something about cross compilation
I totally Don't know how to Set it rightly
What I want to use is sftp client on iPhone
anybody did this ?
Can you share ...
0
votes
2answers
1k views
When compiling a static libssh2 library as i386 it always returns an x86_64 library
Been working on this for hours now so any insight would be greatly appreciated.
I'm trying to compile libssh2 for the iPhone Simulator on OS X (I already have it compiled successfully for the ...
1
vote
1answer
192 views
libssh2_channel_close will be blocked until the remote command exit
I use libssh2 to login a remote computer, then call libssh2_channel_exec to execute a daemon program, the daemon program will then select a available tcpip port and print the selected prot to ...
0
votes
2answers
582 views
libssh2 channel SSL BIO usage
I'm writing a small ftp project for my own amusement which is suppose to be able to do 4 things:
connect directly to a ftp
connect directly to a ftp with SSL (wrapper)
connect through ssh tunnel to ...
2
votes
2answers
1k views
Problems compiling an external library on linux
So I am trying to compile the libssh2 library on linux, but when I try to compile the
example it comes up with a lot of errors, and even though I include the headerfile it asks for, it still asks for ...
2
votes
1answer
497 views
Attaching a static library to an iphone/ipad application
which is the best approach to include a static library with into an application for iPhone or iPad?
I could choose to
compile the library supplying right platform and building a library file with ...
