upnp.h   upnp.h 
skipping to change at line 42 skipping to change at line 42
#ifndef UPNP_H #ifndef UPNP_H
#define UPNP_H #define UPNP_H
/** @name The API */ /** @name The API */
//@{ //@{
#include <stdio.h> #include <stdio.h>
#include "ixml.h" #include "ixml.h"
#include "upnpconfig.h" #include "upnpconfig.h"
#if UPNP_HAVE_DEBUG
# include "upnpdebug.h"
#endif
#define UpnpCloseSocket close #define UpnpCloseSocket close
#define UPNP_SOCKETERROR -1 #define UPNP_SOCKETERROR -1
#define UPNP_INVALID_SOCKET -1 #define UPNP_INVALID_SOCKET -1
#define SOCKET int #define SOCKET int
#include <netinet/in.h> #include <netinet/in.h>
#define LINE_SIZE 180 #define LINE_SIZE 180
#define NAME_SIZE 256 #define NAME_SIZE 256
 End of changes. 1 change blocks. 
0 lines changed or deleted 3 lines changed or added


 upnpconfig.h   upnpconfig.h 
skipping to change at line 42 skipping to change at line 42
/////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////
#ifndef UPNP_CONFIG_H #ifndef UPNP_CONFIG_H
#define UPNP_CONFIG_H #define UPNP_CONFIG_H
/************************************************************************** * /************************************************************************** *
* Library version * Library version
************************************************************************** */ ************************************************************************** */
/** The library version (string) e.g. "1.3.0" */ /** The library version (string) e.g. "1.3.0" */
#define UPNP_VERSION_STRING "1.3.0" #define UPNP_VERSION_STRING "1.3.1"
/** Major version of the library */ /** Major version of the library */
#define UPNP_VERSION_MAJOR 1 #define UPNP_VERSION_MAJOR 1
/** Minor version of the library */ /** Minor version of the library */
#define UPNP_VERSION_MINOR 3 #define UPNP_VERSION_MINOR 3
/** The library version (numeric) e.g. 103 means version 1.3.x */ /** Patch version of the library */
#define UPNP_VERSION (UPNP_VERSION_MAJOR * 100 + UPNP_VERSION_MINOR) #define UPNP_VERSION_PATCH 1
/** The library version (numeric) e.g. 10300 means version 1.3.0 */
#define UPNP_VERSION \
((UPNP_VERSION_MAJOR*100 + UPNP_VERSION_MINOR)*100 + UPNP_VERSION_PATCH)
/************************************************************************** * /************************************************************************** *
* Library optional features * Library optional features
************************************************************************** */ ************************************************************************** */
/* /*
* The following defines can be tested in order to know which * The following defines can be tested in order to know which
* optional features have been included in the installed library. * optional features have been included in the installed library.
*/ */
 End of changes. 2 change blocks. 
3 lines changed or deleted 7 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/