summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed uint* to work on Windows.Andreas Schneider2009-12-017-26/+30
| | | | Thanks to Patrick Spendrin.
* More loggingAris Adamantiadis2009-11-302-0/+3
|
* Fix stupid bug which stops log_verbosity workingAris Adamantiadis2009-11-301-0/+1
|
* Socket connect callback working...Aris Adamantiadis2009-11-307-12/+169
| | | | | Still need to make sure the connect syscall is correctly called
* Some brain surgery to add event-based socketsAris Adamantiadis2009-11-307-7/+135
| | | | | | | | | | chapter 1- SSH Socket Connections. I would like to be able to -Have a ssh_poll_ctx object -Add a ssh socket over it -launch the socket connection (using socket functions) -ssh_poll_ctx_dopoll() -Wait for the timeout or have the "connected" callback called
* Standardize callbacks style and add documentationAris Adamantiadis2009-11-296-45/+81
|
* Squashed commit of the following:Aris Adamantiadis2009-11-2710-234/+686
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | commit 43fad8dfd977637c31fade76ace2905f6528c3bc Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Fri Nov 27 18:39:06 2009 +0100 adaptation to the new ssh_poll_handle object name commit 1e5e6ac4605adf10d437d04f0fd4b7e66024853c Merge: 3fd92a0... 810adad... Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Fri Nov 27 18:33:06 2009 +0100 Merge branch 'master' into badcode/libssh_async commit 3fd92a08eb74b1447a9ff4ca4e1d137475c62cc6 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Mon Nov 2 14:25:46 2009 +0100 Compiles again commit 8910d7b9692418c9ccea0234f6d49674d238dc16 Merge: e83f1b5... cce34a6... Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Mon Nov 2 12:47:34 2009 +0100 Merge branch 'master' into libssh_async Very big merge ! Conflicts: include/libssh/callbacks.h include/libssh/priv.h libssh/channels.c libssh/messages.c libssh/packet.c libssh/server.c libssh/session.c libssh/socket.c commit e83f1b593219e183082b015315f09bfe95a29cfc Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Mon Nov 2 12:07:01 2009 +0100 rename callback.h commit dffa7b730e8f39e2198de18ab69a8e57bef95e58 Merge: 5a8b748... de8808c... Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Tue Sep 15 10:50:07 2009 +0200 Merge branch 'master' of git://git.libssh.org/projects/libssh/libssh into libssh_async commit 5a8b7484f36599d28f2c0c14a23b76bfc7257638 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Sun Sep 13 12:55:18 2009 +0200 More updates to callback system commit 18620c20d5e4e62107093f7fd330e553493253fa Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Sat Sep 12 22:26:52 2009 +0200 Same thing with channel_rcv_data commit fc4a56f6726e409a5866272923f1cbebfc821af3 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Sat Sep 12 22:17:45 2009 +0200 added a few packet handlers for channels commit 4b6bb4fd00b10cf1321a764126f277ab204bffe3 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Fri Sep 11 23:15:25 2009 +0300 sample packet handlers + bugfixes commit 2784d09d6dec0a8f868912d14f90d860233b3f82 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Fri Sep 11 20:30:50 2009 +0300 Packet callbacks nearly finished Need tests and implementation of some packet callbacks commit cd3ea43f20c9ae2f54576ca98a0ea75c5d4299d3 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Thu Sep 10 12:46:02 2009 +0300 First step of async packet handling The socket to packet handler is nearly done (needs testing) I still need to define the interface for callbacks. commit 487f4d2a900a5fe3b90ceda4460ab7d38d7ad722 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Tue Sep 8 23:24:09 2009 +0300 Almost complete socket callback system Finished the callback function so it bufferizes data when callee does not use it. Flushes the buffer automaticaly after a ssh_socket_nonblocking_flush commit 23571f22fac9e40c855dfa99569bba181a39648b Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Tue Sep 8 22:22:32 2009 +0300 First draft of a callback system
* Compile with pcap support by defaultAris Adamantiadis2009-11-271-1/+1
| | | | This will permit to get pcap debugging out of the box
* Compile in stub for pcap funcs when pcap disabledAris Adamantiadis2009-11-272-9/+33
| | | | Avoid that way linking problems
* Build the pcap code into example in all casesAris Adamantiadis2009-11-271-14/+6
|
* Added changelog entries for 0.4 rc2.Andreas Schneider2009-11-202-1/+3
|
* Build the pcap source only if enabled.Andreas Schneider2009-11-191-1/+8
|
* Fix compile bug introduced by another bugfixAris Adamantiadis2009-11-181-1/+1
|
* Fix another memleakAris Adamantiadis2009-11-181-1/+1
| | | | Use buffer_free instead of SAFE_FREE
* Fixed possible doulbe free problem found by Bernhard R. Link.Andreas Schneider2009-11-181-0/+4
|
* Added more error messages and checking to handle_channel_request.Andreas Schneider2009-11-181-0/+28
|
* Fixed a memory leak in channel_new() if we have an error.Andreas Schneider2009-11-181-0/+1
|
* Pcap: more cleanup and minimalist APIAris Adamantiadis2009-11-165-15/+36
|
* Pcap: Fix bug with non-encrypted incoming packetsAris Adamantiadis2009-11-161-0/+11
|
* Improved pcap dumping supportAris Adamantiadis2009-11-166-21/+170
|
* Improve standard logging.Andreas Schneider2009-11-122-1/+5
|
* Fixed setting the timeout and ssh2 and ssh1 option.Andreas Schneider2009-11-121-4/+4
|
* Fixed setting the log verbosity.Andreas Schneider2009-11-121-2/+2
|
* Added an option to set log verbosity as string.Andreas Schneider2009-11-102-0/+32
|
* Always use the poll-emulation on Windows.Andreas Schneider2009-11-091-1/+2
| | | | Until we we have a solution to use WSAPoll only on Vista and newer.
* Added explanation in ssh_silent_disconnect doxygenAris Adamantiadis2009-11-091-1/+2
|
* First lines of experimental pcap output supportAris Adamantiadis2009-11-089-1/+396
| | | | This will serve to debug packets right under wireshark !
* Add an other (simplier ?) polling method to sampleAris Adamantiadis2009-11-081-0/+103
|
* change buffer size in sample.cAris Adamantiadis2009-11-071-2/+2
|
* Refactorize sample.cAris Adamantiadis2009-11-072-121/+45
|
* move authentication out of sampe.cAris Adamantiadis2009-11-072-77/+7
|
* Moved sftp parts into a new exampleAris Adamantiadis2009-11-063-209/+274
|
* Update structures name to new conventionAris Adamantiadis2009-11-062-45/+45
| | | | | SSH_POLL* -> ssh_poll_handle, SSH_POLL_CTX* -> ssh_poll_ctx
* Improve MSVC support. Better binary compatibility.Andreas Schneider2009-11-062-2/+2
| | | | Patch by Patrick Spendrin from KDE.
* A few test cases for benchmarksAris Adamantiadis2009-11-053-0/+36
|
* Fixed compilation of samplesshd.Andreas Schneider2009-11-051-0/+2
|
* Merge branch 'master' of git://git.libssh.org/projects/libssh/libsshAndreas Schneider2009-11-058-32/+43
|\
| * channel_read() won't block until count b. are readAris Adamantiadis2009-11-051-4/+6
| |
| * Forgot to update config.h.cmakeAris Adamantiadis2009-11-051-0/+3
| |
| * Fix compilation on freebsd 6.0 which lacks argp.hAris Adamantiadis2009-11-032-2/+8
| |
| * Fix warnings on old gcc'sAris Adamantiadis2009-11-032-19/+19
| | | | | | | | they don't like variable names having type names
| * Fix openssl header inclusionAris Adamantiadis2009-11-032-7/+7
| | | | | | | | | | caused cbc_encrypt to be redefined by an openssl macro
* | Increase package version.Andreas Schneider2009-10-291-1/+1
|/
* Fixed setting knownhosts in ssh_is_server_known().Andreas Schneider2009-10-291-5/+7
|
* Fixed a segfault on Windows.Andreas Schneider2009-10-291-1/+1
|
* Make libssh_scp a little more consistantAris Adamantiadis2009-10-291-19/+18
|
* Fix server kex againAris Adamantiadis2009-10-293-5/+6
|
* Fix server kexAris Adamantiadis2009-10-291-6/+3
|
* improve error reporting of sftp.cBernhard R. Link2009-10-251-37/+203
| | | | Signed-off-by: Andreas Schneider <mail@cynapses.org>
* buffer_get_data returns 0 on error, so checking buffer_get_u* for < 0 makes ↵Bernhard R. Link2009-10-252-2/+2
| | | | | | no sense Signed-off-by: Andreas Schneider <mail@cynapses.org>