diff options
author | Andreas Schneider <mail@cynapses.org> | 2010-04-04 17:36:45 +0200 |
---|---|---|
committer | Andreas Schneider <mail@cynapses.org> | 2010-04-04 17:38:50 +0200 |
commit | 5d5f6cc60ce82d657227a533c1f1142e9694e801 (patch) | |
tree | eec38d2924ed0d58b3afa64819dda947e9fd4265 | |
parent | ae64c19f2099ed732a4f20fff5ca130f384f8faf (diff) | |
download | libssh-5d5f6cc60ce82d657227a533c1f1142e9694e801.tar.gz libssh-5d5f6cc60ce82d657227a533c1f1142e9694e801.tar.xz libssh-5d5f6cc60ce82d657227a533c1f1142e9694e801.zip |
Fixed the group of the pcap functions.
-rw-r--r-- | libssh/pcap.c | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/libssh/pcap.c b/libssh/pcap.c index b65a041a..58a71a4f 100644 --- a/libssh/pcap.c +++ b/libssh/pcap.c @@ -20,13 +20,6 @@ */ /* pcap.c */ -/** \defgroup ssh_pcap SSH-pcap - * \brief libssh pcap file generation - * - * - * \addtogroup ssh_pcap - * @{ */ - #include "config.h" #ifdef WITH_PCAP @@ -37,13 +30,24 @@ #endif #include <errno.h> - #include "libssh/libssh.h" #include "libssh/pcap.h" #include "libssh/session.h" #include "libssh/buffer.h" #include "libssh/socket.h" +/** + * @internal + * + * @defgroup libssh_pcap The libssh pcap functions + * @ingroup libssh + * + * The pcap file generation + * + * + * @{ + */ + /* The header of a pcap file is the following. We are not going to make it * very complicated. * Just for information. @@ -414,5 +418,7 @@ int ssh_set_pcap_file(ssh_session session, ssh_pcap_file pcapfile){ } #endif -/** @} */ -/* vim: set ts=2 sw=2 et cindent: */ + +/* @} */ + +/* vim: set ts=4 sw=4 et cindent: */ |