Navigation



Ignore:
Timestamp:
Oct 29, 2009, 6:05:45 PM (15 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Added a lot of TODOs :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/freeDiameter/libfreeDiameter.h

    r29 r33  
    373373
    374374/* A l4 protocol name (TCP / SCTP) */
     375#ifdef DISABLE_SCTP
     376#define IPPROTO_NAME( _proto )                                  \
     377        (((_proto) == IPPROTO_TCP) ? "TCP" :                    \
     378                        "Unknown")
     379#else /* DISABLE_SCTP */
    375380#define IPPROTO_NAME( _proto )                                  \
    376381        ( ((_proto) == IPPROTO_TCP) ? "TCP" :                   \
    377382                (((_proto) == IPPROTO_SCTP) ? "SCTP" :          \
    378383                        "Unknown"))
     384#endif /* DISABLE_SCTP */
    379385
    380386/* The sockaddr length of a sSS structure */
Note: See TracChangeset for help on using the changeset viewer.