summaryrefslogtreecommitdiffstats
path: root/include/libssh/priv.h
Commit message (Collapse)AuthorAgeFilesLines
* Fixed including of config.h.Andreas Schneider2009-09-251-1/+3
| | | | | | | | If there is some option to modify libc behaviour (like if there was some off_t usage to be modified by some flag to make that 64 bit) that needs to be done before the first libc header. one could still do -D there, though (unless cmake wants to do something automatically and puts that in config.h)
* Get rid of CRYPTOAris Adamantiadis2009-09-231-4/+4
|
* Moved lots of declaration out of priv.hAris Adamantiadis2009-09-231-318/+1
|
* Change #defines to enums when it makes senseAris Adamantiadis2009-09-231-3/+5
|
* get rid of SSH_OPTIONSAris Adamantiadis2009-09-231-5/+5
|
* get rid of SSH_SESSIONAris Adamantiadis2009-09-231-67/+67
|
* Changed the current callback sys to be scalableAris Adamantiadis2009-09-231-7/+3
|
* Added a userdata generic pointer to the log callback function.Andreas Schneider2009-09-221-1/+2
|
* Fixed building libssh with MSVC.Andreas Schneider2009-09-211-0/+4
| | | | Thanks to Carlo Segato for the patch.
* Limit the size of acceptable compressed packetsAris Adamantiadis2009-09-161-1/+1
|
* Added support for ~/.ssh/config.Andreas Schneider2009-09-151-0/+3
|
* SCP warning requestAris Adamantiadis2009-09-131-0/+1
|
* scp recursive modeAris Adamantiadis2009-09-131-0/+1
|
* Add better error detection + EOF requestAris Adamantiadis2009-09-131-1/+3
|
* Change scp API to use integers for permsAris Adamantiadis2009-09-131-2/+4
|
* Fix typedef collisons on Solaris.Andreas Schneider2009-08-251-4/+4
|
* Implementation of ssh_scp_pull_requestAris Adamantiadis2009-08-231-12/+5
| | | | | | | | | | | Still needed: code in ssh_scp_init, implementation of ssh_scp_read ssh_scp_request_get_filename, ssh_scp_request_get_size, ssh_scp_request_get_mode, ssh_scp_deny_request ssh_scp_accept_request !!
* Merge branch 'master' of git://git.libssh.org/projects/libssh/libsshAris Adamantiadis2009-08-231-6/+18
|\ | | | | | | | | Conflicts: include/libssh/priv.h
| * added ssh_scp_request_new,ssh_scp_request_structAris Adamantiadis2009-08-231-0/+14
| |
| * Add a portable define to print size_t.Andreas Schneider2009-08-201-0/+3
| |
| * Remove DEBUG_CRYPTO variable.Andreas Schneider2009-08-201-6/+0
| | | | | | | | You can enable it with cmake -DWITH_DEBUG_CRYPTO:BOOL=TRUE.
* | experimental callback systemAris Adamantiadis2009-08-231-4/+4
|/
* Merge branch 'master' of git://git.libssh.org/projects/libssh/libsshAris Adamantiadis2009-08-121-1/+13
|\
| * Fix compilation with MSVC and use declspec to export functions.Andreas Schneider2009-08-111-1/+13
| | | | | | | | Thanks to Patrick Spendrin <ps_ml@gmx.de> for all the MSVC fixes.
* | Make the calltrace logging optionalAris Adamantiadis2009-08-121-0/+5
|/
* Latest scp codeAris Adamantiadis2009-08-101-0/+9
| | | | The sample is now able to scp a file
* ssh_scp_push_file and ssh_scp_writeAris Adamantiadis2009-08-091-0/+2
| | | | still needs tests
* Initial scp implementation in source treeAris Adamantiadis2009-08-091-0/+7
|
* Fix build with MSVC.Andreas Schneider2009-07-301-1/+14
|
* Move channel_write_stderr to server.c.Andreas Schneider2009-07-291-0/+2
|
* Check for OpenSSH and implement sftp_symlink correct.Andreas Schneider2009-07-281-0/+1
| | | | | | | | When OpenSSH's sftp-server was implemented, the order of the arguments to the SSH_FXP_SYMLINK method was inadvertently reversed. Unfortunately, the reversal was not noticed until the server was widely deployed. Since fixing this to follow the specification would cause incompatibility, the current order was retained.
* Fix typo orignator_port -> originator_portmilo2009-07-271-1/+1
|
* Public key authentication server sidemilo2009-07-271-0/+5
|
* Switch completly to stdint types.Andreas Schneider2009-07-251-52/+46
|
* Fix conflicting declarations of ssh_session and ssh_kbdint.Andreas Schneider2009-07-251-11/+11
|
* move all u32,u16,u8 and u64 declarations in priv.hAris Adamantiadis2009-07-241-0/+6
| | | | And fix all headers which need u32,u8,u64
* Change refs from AGENT * to ssh_agentAris Adamantiadis2009-07-241-1/+1
| | | | Fixes also a typo in ssh_agent declaration
* Changes all CHANNEL * to ssh_channelAris Adamantiadis2009-07-241-11/+11
|
* Change PRIVATE_KEY * to ssh_private_keyAris Adamantiadis2009-07-241-8/+8
|
* Changed all PUBLIC_KEY * to ssh_public_keyAris Adamantiadis2009-07-241-5/+5
|
* Changed all occurences of BUFFER * to ssh_bufferAris Adamantiadis2009-07-241-34/+34
|
* Change all occurences of STRING * to ssh_stringAris Adamantiadis2009-07-241-26/+26
|
* moved try_publickey_from_file in priv.hAris Adamantiadis2009-07-241-0/+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-241-1/+1
|
* Fixed namespace problem in public structuresAris Adamantiadis2009-07-241-16/+16
| | | | | | | | | 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 sol8 + ss11 compile errors.Andreas Schneider2009-07-201-1/+11
| | | | Thanks to tysonite@gmail.com.
* Fixed copyright noticesAris Adamantiadis2009-07-131-1/+1
|
* Set correct hint when connecting to an IP addressAris Adamantiadis2009-07-121-0/+3
| | | | | | | | 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-041-1/+1
|
* Temporary move of ssh_poll_* back to priv.hAris Adamantiadis2009-07-041-0/+33
| | | | | We'll see later what needs to be put back in public functions