Navigation


Changeset 10:c5c99c73c2bf in freeDiameter for freeDiameter/extensions.c


Ignore:
Timestamp:
Sep 25, 2009, 4:12:08 PM (15 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Added some extensions and functions in the daemon

File:
1 edited

Legend:

Unmodified
Added
Removed
  • freeDiameter/extensions.c

    r9 r10  
    7979        TRACE_DEBUG (FULL, "Extension %s added to the list.", filename);
    8080        return 0;
     81}
     82
     83/* Dump the list */
     84void fd_ext_dump(void)
     85{
     86        struct fd_list * li;
     87       
     88        fd_log_debug("Dumping extensions list :\n");
     89       
     90        for (li = ext_list.next; li != &ext_list; li = li->next)
     91        {
     92                struct fd_ext_info * ext = (struct fd_ext_info *)li;
     93                fd_log_debug(" - '%s'[%s] is %sloaded\n", ext->filename, ext->conffile?:"no conf", ext->handler ? "" : "not ");
     94        }
    8195}
    8296
Note: See TracChangeset for help on using the changeset viewer.