From 2e0c7b4caee2801d6ff6d3120bdb7af0d2279844 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Thu, 6 Apr 2006 03:09:26 +0000 Subject: [PATCH] fix oversights in recent doxygen commit git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1061 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- docs/Doxygen.conf | 6 +++--- src/include/switch_rtp.h | 1 + src/include/switch_stun.h | 2 ++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/Doxygen.conf b/docs/Doxygen.conf index acc6a30779..2d8fc3bd4b 100644 --- a/docs/Doxygen.conf +++ b/docs/Doxygen.conf @@ -83,7 +83,7 @@ WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- -INPUT = ../src +INPUT = ../src ../src/include FILE_PATTERNS = *.c \ *.cc \ *.cxx \ @@ -111,7 +111,7 @@ FILE_PATTERNS = *.c \ *.mm \ *.dox \ *.py -RECURSIVE = YES +RECURSIVE = NO EXCLUDE = EXCLUDE_SYMLINKS = NO EXCLUDE_PATTERNS = @@ -125,7 +125,7 @@ FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- -SOURCE_BROWSER = YES +SOURCE_BROWSER = NO INLINE_SOURCES = YES STRIP_CODE_COMMENTS = YES REFERENCED_BY_RELATION = YES diff --git a/src/include/switch_rtp.h b/src/include/switch_rtp.h index 2be7d9116e..375cdec0d3 100644 --- a/src/include/switch_rtp.h +++ b/src/include/switch_rtp.h @@ -142,6 +142,7 @@ SWITCH_DECLARE(int) switch_rtp_read(switch_rtp *rtp_session, void *data, uint32_ \brief Read data from a given RTP session without copying \param rtp_session the RTP session to read from \param data a pointer to point directly to the RTP read buffer + \param payload_type the inia payload of the packet \return the number of bytes read */ SWITCH_DECLARE(int) switch_rtp_zerocopy_read(switch_rtp *rtp_session, void **data, int *payload_type); diff --git a/src/include/switch_stun.h b/src/include/switch_stun.h index a480235766..213edd81fe 100644 --- a/src/include/switch_stun.h +++ b/src/include/switch_stun.h @@ -201,6 +201,8 @@ SWITCH_DECLARE(uint8_t) switch_stun_packet_attribute_add_binded_address(switch_s \param ip the local ip to use (replaced with stun results) \param port the local port to use (replaced with stun results) \param stunip the ip of the stun server + \param stunport the port of the stun server + \param err a pointer to describe errors \param pool the memory pool to use \return SUCCESS or FAIL */