summaryrefslogtreecommitdiff
path: root/include/asterisk/udptl.h
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2007-12-11 22:20:22 +0000
committerOlle Johansson <oej@edvina.net>2007-12-11 22:20:22 +0000
commitc76f72493a8b76a798d5d867f6b096fa41b78c25 (patch)
tree0a9803469fbf5f68d50c1ad88e82840333144ca0 /include/asterisk/udptl.h
parent6711a5d567c1ba3e14caab84e37538d90c5505c9 (diff)
Doxygen updates, formatting.
misdn stuff needs a lot of doxygenification (Hello, Qwell :-) ) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@92423 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/udptl.h')
-rw-r--r--include/asterisk/udptl.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/include/asterisk/udptl.h b/include/asterisk/udptl.h
index 090cc5b07..74fcf357d 100644
--- a/include/asterisk/udptl.h
+++ b/include/asterisk/udptl.h
@@ -15,6 +15,14 @@
* this code.
*/
+/*! \file
+ * \brief UDPTL support for T.38
+ * \author Steve Underwood <steveu@coppice.org>
+ * \ref udptl.c
+ * \todo add doxygen documentation to this file!
+ */
+
+
#ifndef _ASTERISK_UDPTL_H
#define _ASTERISK_UDPTL_H
@@ -24,8 +32,8 @@
#include "asterisk/sched.h"
#include "asterisk/channel.h"
-enum
-{
+
+enum {
UDPTL_ERROR_CORRECTION_NONE,
UDPTL_ERROR_CORRECTION_FEC,
UDPTL_ERROR_CORRECTION_REDUNDANCY
@@ -36,9 +44,9 @@ extern "C" {
#endif
struct ast_udptl_protocol {
- /* Get UDPTL struct, or NULL if unwilling to transfer */
+ /*! \brief Get UDPTL struct, or NULL if unwilling to transfer */
struct ast_udptl *(*get_udptl_info)(struct ast_channel *chan);
- /* Set UDPTL peer */
+ /*! \brief Set UDPTL peer */
int (* const set_udptl_peer)(struct ast_channel *chan, struct ast_udptl *peer);
const char * const type;
AST_RWLIST_ENTRY(ast_udptl_protocol) list;