-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
zlib 1.2.3
- Loading branch information
Showing
298 changed files
with
125,555 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@setlocal | ||
|
||
@call "%VS80COMNTOOLS%vsvars32.bat" | ||
|
||
@cd libcurl | ||
|
||
@call build.bat | ||
|
||
@cd ..\zlib | ||
|
||
@call build.bat | ||
|
||
@endlocal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@setlocal | ||
|
||
@call "%VS90COMNTOOLS%vsvars32.bat" | ||
|
||
@cd libcurl | ||
|
||
@call build.bat | ||
|
||
@cd ..\zlib | ||
|
||
@call build.bat | ||
|
||
@endlocal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/*************************************************************************** | ||
* _ _ ____ _ | ||
* Project ___| | | | _ \| | | ||
* / __| | | | |_) | | | ||
* | (__| |_| | _ <| |___ | ||
* \___|\___/|_| \_\_____| | ||
* | ||
* Copyright (C) 1998 - 2009, Daniel Stenberg, <[email protected]>, et al. | ||
* | ||
* This software is licensed as described in the file COPYING, which | ||
* you should have received as part of this distribution. The terms | ||
* are also available at http://curl.haxx.se/docs/copyright.html. | ||
* | ||
* You may opt to use, copy, modify, merge, publish, distribute and/or sell | ||
* copies of the Software, and permit persons to whom the Software is | ||
* furnished to do so, under the terms of the COPYING file. | ||
* | ||
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY | ||
* KIND, either express or implied. | ||
* | ||
***************************************************************************/ | ||
|
||
#ifdef __AMIGA__ /* Any AmigaOS flavour */ | ||
|
||
#include "amigaos.h" | ||
#include <amitcp/socketbasetags.h> | ||
|
||
struct Library *SocketBase = NULL; | ||
extern int errno, h_errno; | ||
|
||
#ifdef __libnix__ | ||
#include <stabs.h> | ||
void __request(const char *msg); | ||
#else | ||
# define __request( msg ) Printf( msg "\n\a") | ||
#endif | ||
|
||
void amiga_cleanup() | ||
{ | ||
if(SocketBase) { | ||
CloseLibrary(SocketBase); | ||
SocketBase = NULL; | ||
} | ||
} | ||
|
||
BOOL amiga_init() | ||
{ | ||
if(!SocketBase) | ||
SocketBase = OpenLibrary("bsdsocket.library", 4); | ||
|
||
if(!SocketBase) { | ||
__request("No TCP/IP Stack running!"); | ||
return FALSE; | ||
} | ||
|
||
if(SocketBaseTags(SBTM_SETVAL(SBTC_ERRNOPTR(sizeof(errno))), (ULONG) &errno, | ||
SBTM_SETVAL(SBTC_LOGTAGPTR), (ULONG) "cURL", | ||
TAG_DONE)) { | ||
__request("SocketBaseTags ERROR"); | ||
return FALSE; | ||
} | ||
|
||
#ifndef __libnix__ | ||
atexit(amiga_cleanup); | ||
#endif | ||
|
||
return TRUE; | ||
} | ||
|
||
#ifdef __libnix__ | ||
ADD2EXIT(amiga_cleanup,-50); | ||
#endif | ||
|
||
#else /* __AMIGA__ */ | ||
|
||
#ifdef __POCC__ | ||
# pragma warn(disable:2024) /* Disable warning #2024: Empty input file */ | ||
#endif | ||
|
||
#endif /* __AMIGA__ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#ifndef LIBCURL_AMIGAOS_H | ||
#define LIBCURL_AMIGAOS_H | ||
/*************************************************************************** | ||
* _ _ ____ _ | ||
* Project ___| | | | _ \| | | ||
* / __| | | | |_) | | | ||
* | (__| |_| | _ <| |___ | ||
* \___|\___/|_| \_\_____| | ||
* | ||
* Copyright (C) 1998 - 2007, Daniel Stenberg, <[email protected]>, et al. | ||
* | ||
* This software is licensed as described in the file COPYING, which | ||
* you should have received as part of this distribution. The terms | ||
* are also available at http://curl.haxx.se/docs/copyright.html. | ||
* | ||
* You may opt to use, copy, modify, merge, publish, distribute and/or sell | ||
* copies of the Software, and permit persons to whom the Software is | ||
* furnished to do so, under the terms of the COPYING file. | ||
* | ||
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY | ||
* KIND, either express or implied. | ||
* | ||
***************************************************************************/ | ||
|
||
#ifdef __AMIGA__ /* Any AmigaOS flavour */ | ||
|
||
#ifndef __ixemul__ | ||
|
||
#include <exec/types.h> | ||
#include <exec/execbase.h> | ||
|
||
#include <proto/exec.h> | ||
#include <proto/dos.h> | ||
|
||
#include <sys/socket.h> | ||
|
||
#include "config-amigaos.h" | ||
|
||
#ifndef select | ||
# define select(args...) WaitSelect( args, NULL) | ||
#endif | ||
#ifndef ioctl | ||
# define ioctl(a,b,c,d) IoctlSocket( (LONG)a, (ULONG)b, (char*)c) | ||
#endif | ||
#define _AMIGASF 1 | ||
|
||
extern void amiga_cleanup(); | ||
extern BOOL amiga_init(); | ||
|
||
#else /* __ixemul__ */ | ||
|
||
#warning compiling with ixemul... | ||
|
||
#endif /* __ixemul__ */ | ||
#endif /* __AMIGA__ */ | ||
#endif /* LIBCURL_AMIGAOS_H */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
#ifndef HEADER_CURL_ARPA_TELNET_H | ||
#define HEADER_CURL_ARPA_TELNET_H | ||
/*************************************************************************** | ||
* _ _ ____ _ | ||
* Project ___| | | | _ \| | | ||
* / __| | | | |_) | | | ||
* | (__| |_| | _ <| |___ | ||
* \___|\___/|_| \_\_____| | ||
* | ||
* Copyright (C) 1998 - 2010, Daniel Stenberg, <[email protected]>, et al. | ||
* | ||
* This software is licensed as described in the file COPYING, which | ||
* you should have received as part of this distribution. The terms | ||
* are also available at http://curl.haxx.se/docs/copyright.html. | ||
* | ||
* You may opt to use, copy, modify, merge, publish, distribute and/or sell | ||
* copies of the Software, and permit persons to whom the Software is | ||
* furnished to do so, under the terms of the COPYING file. | ||
* | ||
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY | ||
* KIND, either express or implied. | ||
* | ||
***************************************************************************/ | ||
#ifndef CURL_DISABLE_TELNET | ||
/* | ||
* Telnet option defines. Add more here if in need. | ||
*/ | ||
#define CURL_TELOPT_BINARY 0 /* binary 8bit data */ | ||
#define CURL_TELOPT_SGA 3 /* Supress Go Ahead */ | ||
#define CURL_TELOPT_EXOPL 255 /* EXtended OPtions List */ | ||
#define CURL_TELOPT_TTYPE 24 /* Terminal TYPE */ | ||
#define CURL_TELOPT_XDISPLOC 35 /* X DISPlay LOCation */ | ||
|
||
#define CURL_TELOPT_NEW_ENVIRON 39 /* NEW ENVIRONment variables */ | ||
#define CURL_NEW_ENV_VAR 0 | ||
#define CURL_NEW_ENV_VALUE 1 | ||
|
||
/* | ||
* The telnet options represented as strings | ||
*/ | ||
static const char * const telnetoptions[]= | ||
{ | ||
"BINARY", "ECHO", "RCP", "SUPPRESS GO AHEAD", | ||
"NAME", "STATUS", "TIMING MARK", "RCTE", | ||
"NAOL", "NAOP", "NAOCRD", "NAOHTS", | ||
"NAOHTD", "NAOFFD", "NAOVTS", "NAOVTD", | ||
"NAOLFD", "EXTEND ASCII", "LOGOUT", "BYTE MACRO", | ||
"DE TERMINAL", "SUPDUP", "SUPDUP OUTPUT", "SEND LOCATION", | ||
"TERM TYPE", "END OF RECORD", "TACACS UID", "OUTPUT MARKING", | ||
"TTYLOC", "3270 REGIME", "X3 PAD", "NAWS", | ||
"TERM SPEED", "LFLOW", "LINEMODE", "XDISPLOC", | ||
"OLD-ENVIRON", "AUTHENTICATION", "ENCRYPT", "NEW-ENVIRON" | ||
}; | ||
|
||
#define CURL_TELOPT_MAXIMUM CURL_TELOPT_NEW_ENVIRON | ||
|
||
#define CURL_TELOPT_OK(x) ((x) <= CURL_TELOPT_MAXIMUM) | ||
#define CURL_TELOPT(x) telnetoptions[x] | ||
|
||
#define CURL_NTELOPTS 40 | ||
|
||
/* | ||
* First some defines | ||
*/ | ||
#define CURL_xEOF 236 /* End Of File */ | ||
#define CURL_SE 240 /* Sub negotiation End */ | ||
#define CURL_NOP 241 /* No OPeration */ | ||
#define CURL_DM 242 /* Data Mark */ | ||
#define CURL_GA 249 /* Go Ahead, reverse the line */ | ||
#define CURL_SB 250 /* SuBnegotiation */ | ||
#define CURL_WILL 251 /* Our side WILL use this option */ | ||
#define CURL_WONT 252 /* Our side WON'T use this option */ | ||
#define CURL_DO 253 /* DO use this option! */ | ||
#define CURL_DONT 254 /* DON'T use this option! */ | ||
#define CURL_IAC 255 /* Interpret As Command */ | ||
|
||
/* | ||
* Then those numbers represented as strings: | ||
*/ | ||
static const char * const telnetcmds[]= | ||
{ | ||
"EOF", "SUSP", "ABORT", "EOR", "SE", | ||
"NOP", "DMARK", "BRK", "IP", "AO", | ||
"AYT", "EC", "EL", "GA", "SB", | ||
"WILL", "WONT", "DO", "DONT", "IAC" | ||
}; | ||
|
||
#define CURL_TELCMD_MINIMUM CURL_xEOF /* the first one */ | ||
#define CURL_TELCMD_MAXIMUM CURL_IAC /* surprise, 255 is the last one! ;-) */ | ||
|
||
#define CURL_TELQUAL_IS 0 | ||
#define CURL_TELQUAL_SEND 1 | ||
#define CURL_TELQUAL_INFO 2 | ||
#define CURL_TELQUAL_NAME 3 | ||
|
||
#define CURL_TELCMD_OK(x) ( ((unsigned int)(x) >= CURL_TELCMD_MINIMUM) && \ | ||
((unsigned int)(x) <= CURL_TELCMD_MAXIMUM) ) | ||
#define CURL_TELCMD(x) telnetcmds[(x)-CURL_TELCMD_MINIMUM] | ||
|
||
#endif /* CURL_DISABLE_TELNET */ | ||
|
||
#endif /* HEADER_CURL_ARPA_TELNET_H */ |
Oops, something went wrong.