fix oversights in recent doxygen commit

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1061 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2006-04-06 03:09:26 +00:00
parent 2356e4d43f
commit 2e0c7b4cae
3 changed files with 6 additions and 3 deletions

View File

@ -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

View File

@ -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);

View File

@ -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
*/