2003-12-10 08:53:35 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2019-03-07 19:06:59 -05:00
|
|
|
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2003-12-10 08:53:35 -05:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2003-12-10 08:53:35 -05:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2012-04-06 17:35:15 -04:00
|
|
|
|
2019-03-07 19:06:59 -05:00
|
|
|
#ifdef __AMIGA__
|
|
|
|
# include "amigaos.h"
|
|
|
|
# if defined(HAVE_PROTO_BSDSOCKET_H) && !defined(USE_AMISSL)
|
|
|
|
# include <amitcp/socketbasetags.h>
|
|
|
|
# endif
|
|
|
|
# ifdef __libnix__
|
|
|
|
# include <stabs.h>
|
|
|
|
# endif
|
|
|
|
#endif
|
2003-12-10 08:53:35 -05:00
|
|
|
|
2019-03-07 19:06:59 -05:00
|
|
|
/* The last #include files should be: */
|
|
|
|
#include "curl_memory.h"
|
|
|
|
#include "memdebug.h"
|
2012-04-06 17:35:15 -04:00
|
|
|
|
2019-03-07 19:06:59 -05:00
|
|
|
#ifdef __AMIGA__
|
|
|
|
#if defined(HAVE_PROTO_BSDSOCKET_H) && !defined(USE_AMISSL)
|
2003-12-10 08:53:35 -05:00
|
|
|
struct Library *SocketBase = NULL;
|
2005-07-13 14:06:40 -04:00
|
|
|
extern int errno, h_errno;
|
|
|
|
|
|
|
|
#ifdef __libnix__
|
|
|
|
void __request(const char *msg);
|
|
|
|
#else
|
2016-04-03 14:28:34 -04:00
|
|
|
# define __request(msg) Printf(msg "\n\a")
|
2005-07-13 14:06:40 -04:00
|
|
|
#endif
|
2003-12-10 08:53:35 -05:00
|
|
|
|
2012-04-06 17:35:15 -04:00
|
|
|
void Curl_amiga_cleanup()
|
2003-12-10 08:53:35 -05:00
|
|
|
{
|
2009-02-27 03:53:10 -05:00
|
|
|
if(SocketBase) {
|
|
|
|
CloseLibrary(SocketBase);
|
|
|
|
SocketBase = NULL;
|
|
|
|
}
|
2003-12-10 08:53:35 -05:00
|
|
|
}
|
|
|
|
|
2012-04-06 17:35:15 -04:00
|
|
|
bool Curl_amiga_init()
|
2003-12-10 08:53:35 -05:00
|
|
|
{
|
2009-02-27 03:53:10 -05:00
|
|
|
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,
|
2016-10-18 07:59:54 -04:00
|
|
|
SBTM_SETVAL(SBTC_LOGTAGPTR), (ULONG) "curl",
|
2009-02-27 03:53:10 -05:00
|
|
|
TAG_DONE)) {
|
|
|
|
__request("SocketBaseTags ERROR");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2005-07-13 14:06:40 -04:00
|
|
|
#ifndef __libnix__
|
2012-04-06 17:35:15 -04:00
|
|
|
atexit(Curl_amiga_cleanup);
|
2005-07-13 14:06:40 -04:00
|
|
|
#endif
|
2009-02-27 03:53:10 -05:00
|
|
|
|
|
|
|
return TRUE;
|
2003-12-10 08:53:35 -05:00
|
|
|
}
|
2005-07-13 14:06:40 -04:00
|
|
|
|
|
|
|
#ifdef __libnix__
|
2015-03-17 08:41:49 -04:00
|
|
|
ADD2EXIT(Curl_amiga_cleanup, -50);
|
2009-10-27 12:38:42 -04:00
|
|
|
#endif
|
|
|
|
|
2019-03-07 19:06:59 -05:00
|
|
|
#endif /* HAVE_PROTO_BSDSOCKET_H */
|
|
|
|
|
|
|
|
#ifdef USE_AMISSL
|
|
|
|
void Curl_amiga_X509_free(X509 *a)
|
|
|
|
{
|
|
|
|
X509_free(a);
|
|
|
|
}
|
|
|
|
#endif /* USE_AMISSL */
|
|
|
|
#endif /* __AMIGA__ */
|
|
|
|
|