Navigation


Changeset 1085:7d7266115a34 in freeDiameter for libfdproto/messages.c


Ignore:
Timestamp:
May 3, 2013, 8:20:56 PM (11 years ago)
Author:
Sebastien Decugis <sdecugis@freediameter.net>
Branch:
default
Phase:
public
Message:

Cleaning of the traces in progress

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfdproto/messages.c

    r1084 r1085  
    711711/* Debug functions: dumping */
    712712
     713#warning "todo"
     714DECLARE_FD_DUMP_PROTOTYPE( fd_msg_dump_summary, msg_or_avp *obj, struct dictionary *dict, int force_parsing, int recurse )
     715{
     716        return NULL;
     717}
     718/* one-line dump with all the contents of the message */
     719DECLARE_FD_DUMP_PROTOTYPE( fd_msg_dump_full, msg_or_avp *obj, struct dictionary *dict, int force_parsing, int recurse )
     720{
     721        return NULL;
     722}
     723/* multi-line human-readable dump similar to wireshark output */
     724DECLARE_FD_DUMP_PROTOTYPE( fd_msg_dump_treeview, msg_or_avp *obj, struct dictionary *dict, int force_parsing, int recurse )
     725{
     726        return NULL;
     727}
     728
     729#ifndef OLD_CODE_TO_BE_REPLACED
     730void fd_msg_dump_walk ( int level, msg_or_avp *obj )
     731{
     732        LOG_D("fd_msg_dump_walk %d, %p is deprecated", level, obj);
     733}
     734void fd_msg_dump_one ( int level, msg_or_avp * obj )
     735{
     736        LOG_D("fd_msg_dump_one %d, %p is deprecated", level, obj);
     737}
     738#else  /* OLD_CODE_TO_BE_REPLACED */
     739
     740
    713741/* indent inside an object */
    714742#define INOBJHDR        "%*s   "
     
    10761104}
    10771105
    1078 
     1106#endif /*  OLD_CODE_TO_BE_REPLACED */
    10791107/***************************************************************************************************************/
    10801108/* Simple meta-data management */
Note: See TracChangeset for help on using the changeset viewer.