Diff for /embedaddon/php/ext/sockets/multicast.h between versions 1.1 and 1.1.1.3

version 1.1, 2012/05/29 12:34:42 version 1.1.1.3, 2014/06/15 20:03:55
Line 2 Line 2
    +----------------------------------------------------------------------+     +----------------------------------------------------------------------+
    | PHP Version 5                                                        |     | PHP Version 5                                                        |
    +----------------------------------------------------------------------+     +----------------------------------------------------------------------+
   | Copyright (c) 1997-2012 The PHP Group                                |   | Copyright (c) 1997-2014 The PHP Group                                |
    +----------------------------------------------------------------------+     +----------------------------------------------------------------------+
    | This source file is subject to version 3.01 of the PHP license,      |     | This source file is subject to version 3.01 of the PHP license,      |
    | that is bundled with this package in the file LICENSE, and is        |     | that is bundled with this package in the file LICENSE, and is        |
Line 19 Line 19
 /* $Id$ */  /* $Id$ */
   
 #if defined(MCAST_JOIN_GROUP) && \  #if defined(MCAST_JOIN_GROUP) && \
        (!defined(PHP_WIN32) || (_WIN32_WINNT >= 0x600 && SOCKETS_ENABLE_VISTA_API))        (!defined(PHP_WIN32) || (_WIN32_WINNT >= 0x600 && SOCKETS_ENABLE_VISTA_API)) && \
         !defined(__APPLE__)
 #define RFC3678_API 1  #define RFC3678_API 1
 /* has block/unblock and source membership, in this case for both IPv4 and IPv6 */  /* has block/unblock and source membership, in this case for both IPv4 and IPv6 */
 #define HAS_MCAST_EXT 1  #define HAS_MCAST_EXT 1
#elif defined(IP_ADD_SOURCE_MEMBERSHIP)#elif defined(IP_ADD_SOURCE_MEMBERSHIP) && !defined(__APPLE__)
 /* has block/unblock and source membership, but only for IPv4 */  /* has block/unblock and source membership, but only for IPv4 */
 #define HAS_MCAST_EXT 1  #define HAS_MCAST_EXT 1
 #endif  #endif

Removed from v.1.1  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>