Navigation


Changeset 559:85ba85b4739c in freeDiameter


Ignore:
Timestamp:
Sep 15, 2010, 6:35:31 PM (14 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Cleanups

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • INSTALL.FreeBSD

    r484 r559  
    5151   # make
    5252   # make test
    53   Note: on FreeBSD <= 8.1 on amd64, SCTP does not work properly, causing testsctp & testcnx to fail.
    5453
    55549) Install
  • freeDiameter/endpoints.c

    r512 r559  
    7575                                 || IN_IS_ADDR_LOOPBACK(&ptr.sin->sin_addr)
    7676                                    /* the next one filters both EXPERIMENTAL, BADCLASS and MULTICAST. */
    77                                  || (((ptr.sin->sin_addr.s_addr) & ntohl(0xe0000000)) == ntohl(0xe0000000))
     77                                 || ((ntohl(ptr.sin->sin_addr.s_addr) & 0xe0000000) == 0xe0000000)
    7878                                 || (ptr.sin->sin_addr.s_addr == INADDR_BROADCAST)) {
    7979                                        if (TRACE_BOOL(ANNOYING + 1)) {
Note: See TracChangeset for help on using the changeset viewer.