Navigation



Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/freeDiameter/libfdproto.h

    r1100 r1101  
    25482548
    25492549
     2550/* Helper for the hooks mechanism, for use from libfdcore */
     2551struct fd_msg_pmdl {
     2552        struct fd_list sentinel; /* if the sentinel.o field is NULL, the structure is not initialized. Otherwise it points to the cleanup function in libfdcore. */
     2553        pthread_mutex_t lock;
     2554};
     2555#define FD_MSG_PMDL_INITIALIZER(pmdl_ptr)        { FD_LIST_INITIALIZER(  (pmdl_ptr)->sentinel       ), PTHREAD_MUTEX_INITIALIZER }
     2556struct fd_msg_pmdl * fd_msg_pmdl_get(struct msg * msg);
     2557
    25502558/***************************************/
    25512559/*   Manage AVP values                 */
Note: See TracChangeset for help on using the changeset viewer.