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
This commit is contained in:
Russell Bryant 2007-06-05 14:55:09 +00:00
parent a236af6137
commit 05169b004d
1 changed files with 6 additions and 6 deletions

View File

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