aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2006-11-06 22:58:58 +0000
committerAris Adamantiadis <aris@0xbadc0de.be>2006-11-06 22:58:58 +0000
commit44b54704433753599ff246e4461556afef645a5d (patch)
tree33d96cd549c9a46a512097fc48d7c84a56816d1f /include
parentea215fdecc62cc3ca25f707dade07941d66f7856 (diff)
downloadlibssh-44b54704433753599ff246e4461556afef645a5d.tar.gz
libssh-44b54704433753599ff246e4461556afef645a5d.tar.xz
libssh-44b54704433753599ff246e4461556afef645a5d.zip
at least I get a working doxygen documentation.
I am going to make the whole documentation as doxygen files. git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@77 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'include')
-rw-r--r--include/libssh/libssh.h2
-rw-r--r--include/libssh/priv.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index 60002504..2221386b 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -220,6 +220,8 @@ void ssh_options_set_rsa_server_key(SSH_OPTIONS *opt, char *rsakey);
/* buffer.c */
+/** creates a new buffer
+ */
BUFFER *buffer_new();
void buffer_free(BUFFER *buffer);
/* buffer_get returns a pointer to the begining of the buffer. no position is taken into account */
diff --git a/include/libssh/priv.h b/include/libssh/priv.h
index 1dd6e92f..7fbf238e 100644
--- a/include/libssh/priv.h
+++ b/include/libssh/priv.h
@@ -150,7 +150,8 @@ struct string_struct {
unsigned char string[MAX_PACKET_LEN];
} __attribute__ ((packed));
-
+/** Describes a buffer state at a moment
+ */
struct buffer_struct {
char *data;
int used;