Skip to content

Commit

Permalink
keepalive: small formatting updates and comments to the ka dest struc…
Browse files Browse the repository at this point in the history
…ture
  • Loading branch information
miconda committed Mar 19, 2024
1 parent 9e2a0ee commit cee82c9
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/modules/keepalive/keepalive.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,15 @@ typedef struct _ka_initial_dest
typedef struct _ka_dest
{
str uri;
str owner; // name of destination "owner"
// (module asking to monitor this destination
str uuid; // Universal id for this record
str owner; /*!< Name of destination "owner" */
/*!< Module asking to monitor this destination */
str uuid; /*!< Universal id for this record */
int flags;
int state;
time_t last_checked, last_up, last_down;
int counter; // counts unreachable attempts
time_t last_checked;
time_t last_up; /*!< Time of last successful SIP reply */
time_t last_down; /*!< Time of last failure SIP reply */
int counter; /*!< Counts unreachable attempts */
ticks_t ping_interval; /*!< Actual interval between OPTIONS */

void *user_attr;
Expand Down

0 comments on commit cee82c9

Please sign in to comment.