Navigation


Changeset 168:6db078b955e3 in freeDiameter for include


Ignore:
Timestamp:
Feb 2, 2010, 10:15:05 AM (14 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Completed rt_default extension

Location:
include/freeDiameter
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • include/freeDiameter/CMakeLists.txt

    r51 r168  
    6565        # Now check the number of args of this function, since it changed between Ubuntu 9.04 and 9.10
    6666        SET(CHECK_SCTP_CONNECTX_4_ARGS_SOURCE_CODE "
    67                 #include <netinet/sctp.h>;
     67                #include <unistd.h>
     68                #include <netinet/sctp.h>
    6869                int main() {
    6970                   return sctp_connectx(0, NULL, 0, NULL);
  • include/freeDiameter/libfreeDiameter.h

    r156 r168  
    16321632
    16331633/* The following functions are helpers for the routing module.
    1634   The routing data is stored in the message it-self. */
     1634  The routing data is stored in the message itself. */
    16351635
    16361636/* Structure that contains the routing data for a message */
     
    16421642
    16431643/* Add a peer to the candidates list */
    1644 int  fd_rtd_candidate_add(struct rt_data * rtd, char * peerid);
     1644int  fd_rtd_candidate_add(struct rt_data * rtd, char * peerid, char * realm);
    16451645
    16461646/* Remove a peer from the candidates (if it is found) */
     
    16571657        struct fd_list  chain;  /* link in the list returned by the previous fct */
    16581658        char *          diamid; /* the diameter Id of the peer */
     1659        char *          realm;  /* the diameter realm of the peer (if known) */
    16591660        int             score;  /* the current routing score for this peer, see fd_rt_out_register definition for details */
    16601661};
Note: See TracChangeset for help on using the changeset viewer.