Navigation


Changeset 1169:11724ff78638 in freeDiameter for include


Ignore:
Timestamp:
Jun 1, 2013, 3:23:55 AM (11 years ago)
Author:
Sebastien Decugis <sdecugis@freediameter.net>
Branch:
default
Phase:
public
Message:

Some cleanups in dbg_interactive extension

Location:
include/freeDiameter
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • include/freeDiameter/libfdcore.h

    r1164 r1169  
    808808/* The "old" FD_EV_DUMP_* events are replaced with direct calls to the following dump functions */
    809809DECLARE_FD_DUMP_PROTOTYPE(fd_conf_dump);
     810#else /* SWIG */
     811DECLARE_FD_DUMP_PROTOTYPE_simple(fd_event_trig_dump);
     812DECLARE_FD_DUMP_PROTOTYPE_simple(fd_conf_dump);
     813#endif /* SWIG */
    810814DECLARE_FD_DUMP_PROTOTYPE(fd_ext_dump, int indent_next);
    811815DECLARE_FD_DUMP_PROTOTYPE(fd_servers_dump, int details);
    812 #endif /* SWIG */
    813816DECLARE_FD_DUMP_PROTOTYPE(fd_peer_dump_list, int details);
    814817DECLARE_FD_DUMP_PROTOTYPE(fd_peer_dump, struct peer_hdr * p, int details);
  • include/freeDiameter/libfdproto.h

    r1167 r1169  
    239239#define DECLARE_FD_DUMP_PROTOTYPE( function_name, args... )     \
    240240        char * function_name(char ** buf, size_t *len, size_t *offset, ##args)
     241
     242#ifdef SWIG
     243#define DECLARE_FD_DUMP_PROTOTYPE_simple( function_name )       \
     244        char * function_name(char ** buf, size_t *len, size_t *offset)
     245#endif /* SWIG */
    241246       
    242247
Note: See TracChangeset for help on using the changeset viewer.