From: Russell Bryant Date: Tue, 5 Jun 2007 14:55:09 +0000 (+0000) Subject: Doxygenify the comments for new members of the iax2_thread struct X-Git-Tag: 1.6.0-beta1~3^2~2499 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05169b004def528583e50caf80b5fb4a13bcebd4;p=thirdparty%2Fasterisk.git Doxygenify the comments for new members of the iax2_thread struct git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@67272 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index ed87de5312..bfb7c2093d 100644 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -726,12 +726,12 @@ struct iax2_thread { time_t checktime; ast_mutex_t lock; ast_cond_t cond; - unsigned short ffcallno; /* if this thread is processing a full frame, the - callno for that frame will be here, so we can - avoid dispatching any more full frames for that - callno to other threads */ - struct sockaddr_in ffsin; /* remember the peer IP/port number for a full frame - in process */ + /*! If this thread is processing a full frame, the callno for that frame + * will be here, so we can avoid dispatching any more full frames + * or that callno to other threads */ + unsigned short ffcallno; + /*! Remember the peer IP/port number for a full frame in process */ + struct sockaddr_in ffsin; }; /* Thread lists */