Skip to content

Commit

Permalink
sess: add doxygen to sipsess_ack_pending()
Browse files Browse the repository at this point in the history
  • Loading branch information
cspiel1 committed Oct 23, 2023
1 parent c51b45b commit 02034d2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/sipsess/sess.c
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,14 @@ bool sipsess_refresh_allowed(const struct sipsess *sess)
}


/**
* Return true if there is an open SIP Session Reply for which an ACK is
* expected
*
* @param sess SIP Session
*
* @return True if ACK is pending, otherwise false
*/
bool sipsess_ack_pending(const struct sipsess *sess)
{
return sess && sess->replyl.head ? true : false;
Expand Down

0 comments on commit 02034d2

Please sign in to comment.