summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Changes all CHANNEL * to ssh_channelAris Adamantiadis2009-07-2411-118/+118
|
* Change PRIVATE_KEY * to ssh_private_keyAris Adamantiadis2009-07-247-30/+30
|
* Forgot sample* in previous BUFFER changeAris Adamantiadis2009-07-242-2/+2
|
* Changed all PUBLIC_KEY * to ssh_public_keyAris Adamantiadis2009-07-248-34/+34
|
* Changed all occurences of BUFFER * to ssh_bufferAris Adamantiadis2009-07-2415-131/+131
|
* You always forget SSH1 ...Aris Adamantiadis2009-07-242-17/+17
|
* Change all occurences of STRING * to ssh_stringAris Adamantiadis2009-07-2416-253/+268
|
* moved try_publickey_from_file in priv.hAris Adamantiadis2009-07-242-4/+3
| | | | | | Had nothing to do in libssh.h. 100% sure nobody used it since one of the structure declaration was not public.
* replacing keys_struct with ssh_keys_structAris Adamantiadis2009-07-244-5/+5
|
* Fixed namespace problem in public structuresAris Adamantiadis2009-07-248-82/+82
| | | | | | | | | changed struct string_struct to ssh_string_struct buffer_struct to ssh_buffer_struct and so on. Should not break apps using the caps version of these
* Fix a possible segfault in sftp_canonicalize_path().Andreas Schneider2009-07-231-0/+4
|
* Fix getaddrinfo and gethostbyname build problems on Solaris.Andreas Schneider2009-07-232-0/+22
|
* Fix OpenSSL include file checks on Solaris.Andreas Schneider2009-07-231-0/+3
|
* Fix finding OpenSSL on Solaris.Andreas Schneider2009-07-231-0/+5
|
* Add cmake check for big endian.Andreas Schneider2009-07-232-9/+6
|
* Fix a segfault if a NULL pointer is passed to ssh_disconnect().Andreas Schneider2009-07-221-3/+2
|
* Don't segfault if the session or the answer is NULL.Andreas Schneider2009-07-221-1/+1
|
* Merge branch 'master' of git://git.libssh.org/projects/libssh/libsshAndreas Schneider2009-07-211-42/+43
|\
| * Add compile flags and test for compiler options only if we use gcc.Andreas Schneider2009-07-211-42/+41
| |
| * Only add additional warnings if we have a GNU compiler.Andreas Schneider2009-07-211-1/+3
| |
* | Fix ssh_write_knownhost() which always returned -1.Andreas Schneider2009-07-212-4/+6
|/ | | | | fwrite() return the the number of items written not the size of the buffer.
* Make the ssh_userauth_kbdint functions to get the prompts const.Andreas Schneider2009-07-213-7/+8
| | | | They shouldn't be modified or free'd by a user.
* Fix sol8 + ss11 compile errors.Andreas Schneider2009-07-202-2/+14
| | | | Thanks to tysonite@gmail.com.
* Add missing changelog entries.Andreas Schneider2009-07-141-0/+14
|
* Fix doxygen to match SSH_SERVER_FILE_NOT_FOUND fixAris Adamantiadis2009-07-141-1/+4
|
* Fix build on windows, missing include.Andreas Schneider2009-07-131-0/+2
|
* Put #ifdef around AI_NUMERICSERV which doesn't seem stdAris Adamantiadis2009-07-131-0/+2
|
* Enable conditional compiling for IP regex code.Aris Adamantiadis2009-07-133-2/+17
|
* forgot init.c in copyright updatesAris Adamantiadis2009-07-131-1/+1
|
* Fixed copyright noticesAris Adamantiadis2009-07-137-7/+8
|
* typo in sample.cAris Adamantiadis2009-07-131-1/+1
|
* Reflect the SSH_SERVER_NOT_KNOWN add-on in sampleAris Adamantiadis2009-07-121-0/+4
|
* Added return code SSH_SERVER_FILE_NOT_FOUNDAris Adamantiadis2009-07-122-2/+3
| | | | | This error is returned by ssh_is_server_known when known_hosts file does not exist and gives more action to the developer.
* Set correct hint when connecting to an IP addressAris Adamantiadis2009-07-123-4/+58
| | | | | | | | libssh now uses a regular expression against destination hostnames to match numerical IP addresses and set the appropriate hint. Patches also add init and finalize code to compile the regexp
* fix int -> socket_t in SSH_POLLAris Adamantiadis2009-07-042-2/+2
|
* Temporary move of ssh_poll_* back to priv.hAris Adamantiadis2009-07-042-36/+33
| | | | | We'll see later what needs to be put back in public functions
* Move doxygen tags into C filesAris Adamantiadis2009-07-042-123/+115
|
* Put back the poll declarations into priv.hAris Adamantiadis2009-07-042-7/+9
| | | | That are, poll constants.
* Add a generic way to handle sockets asynchronously.Aleksandar Kanchev2009-07-033-8/+389
| | | | | | | | | | | | | | It's based on poll objects, each of which store a socket, it's events and a callback, which gets called whenever an event is set. The poll objects are attached to a poll context, which should be allocated on per thread basis. Polling the poll context will poll all the attached poll objects and call their callbacks (handlers) if any of the socket events are set. This should be done within the main loop of an application. This is intended as a ground work for making libssh asynchronous. Signed-off-by: Aleksandar Kanchev <aleksandar.kanchev@googlemail.com>
* Add logging of the sftp flags used to open a fileAris Adamantiadis2009-06-301-1/+1
| | | | Should be used to debug weird behaviour when using libssh on windows with different compiler chains.
* Fixed Could not write as much data as expected msgAris Adamantiadis2009-06-301-1/+1
| | | | Bug caused by verifying the size of the buffer in the wrong place
* Fixed make condition in build_make.sh.Aleksandar Kanchev2009-06-251-1/+1
| | | | | Signed-off-by: Aleksandar Kanchev <aleksandar.kanchev@googlemail.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Fixed memory leak in ssh_is_server_known()Aris Adamantiadis2009-06-221-0/+2
|
* Fixed yet another read-after-free bugAris Adamantiadis2009-06-211-2/+3
| | | | read of a buffer len after free in sftp_write()
* Fixed a use-after-free in match_hashed_host()Aris Adamantiadis2009-06-211-1/+1
|
* fix stupid "use unallocated memory" code in sampleAris Adamantiadis2009-06-211-1/+1
| | | | it confused valgrind and wasted 2 precious hours of my life
* Added a macro to test buffer_struct integrityAris Adamantiadis2009-06-211-9/+50
| | | | Nothing yet in cmake and config.h.in for this
* Modified the sftp test case so it creates 0700 filAris Adamantiadis2009-06-211-1/+1
|
* Fix doublefree bug found by CyrilAris Adamantiadis2009-06-211-10/+20
|
* Remove unneeded printf.Andreas Schneider2009-06-191-1/+0
|