Changeset 9282
- Timestamp:
- Oct 11, 2009, 1:32:58 AM (13 years ago)
- Location:
- trunk/third-party/miniupnp
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/third-party/miniupnp/Changelog.txt
r9166 r9282 1 $Id: Changelog.txt,v 1.9 1 2009/09/21 12:57:42nanard Exp $1 $Id: Changelog.txt,v 1.93 2009/10/10 19:15:34 nanard Exp $ 2 2 miniUPnP client Changelog. 3 4 2009/10/10: 5 Some fixes for compilation under Solaris 6 compilation fixes : http://miniupnp.tuxfamily.org/forum/viewtopic.php?p=1464 3 7 4 8 2009/09/21: -
trunk/third-party/miniupnp/miniupnpc.c
r9167 r9282 1 /* $Id: miniupnpc.c,v 1.6 4 2009/09/21 12:57:42nanard Exp $ */1 /* $Id: miniupnpc.c,v 1.66 2009/10/10 19:15:34 nanard Exp $ */ 2 2 /* Project : miniupnp 3 3 * Author : Thomas BERNARD … … 6 6 * provided LICENCE file. */ 7 7 #define __EXTENSIONS__ 1 8 #if ndef MACOSX8 #if !defined(MACOSX) && !defined(__sun) 9 9 #if !defined(_XOPEN_SOURCE) && !defined(__OpenBSD__) && !defined(__NetBSD__) 10 10 #ifndef __cplusplus … … 35 35 /* Standard POSIX includes */ 36 36 #include <unistd.h> 37 #include <sys/select.h> /* fd_set */37 #include <sys/select.h> 38 38 #include <sys/socket.h> 39 39 #include <sys/types.h> … … 699 699 } 700 700 701 staticint701 int 702 702 UPNPIGD_IsConnected(struct UPNPUrls * urls, struct IGDdatas * data) 703 703 { -
trunk/third-party/miniupnp/miniupnpc.h
r6848 r9282 1 /* $Id: miniupnpc.h,v 1.1 8 2008/09/25 18:02:50nanard Exp $ */1 /* $Id: miniupnpc.h,v 1.19 2009/10/10 19:15:35 nanard Exp $ */ 2 2 /* Project: miniupnp 3 3 * http://miniupnp.free.fr/ … … 103 103 int ReceiveData(int socket, char * data, int length, int timeout); 104 104 105 /* return 0 or 1 */ 106 LIBSPEC int UPNPIGD_IsConnected(struct UPNPUrls *, struct IGDdatas *); 107 108 105 109 #ifdef __cplusplus 106 110 } -
trunk/third-party/miniupnp/miniwget.c
r9167 r9282 1 /* $Id: miniwget.c,v 1.2 6 2009/09/21 12:57:42nanard Exp $ */1 /* $Id: miniwget.c,v 1.28 2009/10/10 19:15:35 nanard Exp $ */ 2 2 /* Project : miniupnp 3 3 * Author : Thomas Bernard … … 21 21 #include <unistd.h> 22 22 #include <sys/param.h> 23 #include <sys/select.h> /* fd_set */23 #include <sys/select.h> 24 24 #include <sys/socket.h> 25 25 #include <netdb.h> … … 27 27 #include <arpa/inet.h> 28 28 #include <errno.h> 29 #include <time.h> 29 30 #define closesocket close 30 31 #define MINIUPNPC_IGNORE_EINTR -
trunk/third-party/miniupnp/minixml.c
r9167 r9282 1 /* $Id: minixml.c,v 1. 6 2007/05/15 18:14:08nanard Exp $ */1 /* $Id: minixml.c,v 1.7 2009/10/10 19:15:35 nanard Exp $ */ 2 2 /* minixml.c : the minimum size a xml parser can be ! */ 3 3 /* Project : miniupnp … … 5 5 * Author : Thomas Bernard 6 6 7 Copyright (c) 2005-200 7, Thomas BERNARD7 Copyright (c) 2005-2009, Thomas BERNARD 8 8 All rights reserved. 9 9
Note: See TracChangeset
for help on using the changeset viewer.