diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2008-11-04 21:59:12 +0000 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2008-11-04 21:59:12 +0000 |
commit | 64e73b8d8ab216c5dd8812c8cdad39b7f1bfc4d2 (patch) | |
tree | 2c5f71d247607d17b55df210adc6b75d833b3572 /libssh/connect.c | |
parent | 90bb81f7b0a729f0508c02586b3d609950d24f2c (diff) | |
download | libssh-64e73b8d8ab216c5dd8812c8cdad39b7f1bfc4d2.tar.gz libssh-64e73b8d8ab216c5dd8812c8cdad39b7f1bfc4d2.tar.xz libssh-64e73b8d8ab216c5dd8812c8cdad39b7f1bfc4d2.zip |
doxygen fixes. Mostly typos and some comments.
sftp must be fully documented !
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@187 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'libssh/connect.c')
-rw-r--r-- | libssh/connect.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libssh/connect.c b/libssh/connect.c index c96200d2..1a9a9d8a 100644 --- a/libssh/connect.c +++ b/libssh/connect.c @@ -136,9 +136,12 @@ int ssh_connect_ai_timeout(SSH_SESSION *session, const char *host, int port, str return s; } -/* connect_host connects to an IPv4 (or IPv6) host */ -/* specified by its IP address or hostname. */ -/* output is the file descriptor, <0 if failed. */ +/** \internal + * \brief connect_host connects to an IPv4 (or IPv6) host + * specified by its IP address or hostname. + * \returns file descriptor + * \returns less than 0 value + */ socket_t ssh_connect_host(SSH_SESSION *session, const char *host, const char *bind_addr, int port,long timeout, long usec){ |