sourcemod/extensions/curl/curl-src/lib/amigaos.c

79 lines
2.0 KiB
C
Raw Normal View History

2009-01-09 00:31:00 +01:00
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
2013-03-18 01:55:59 +01:00
* Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
2009-01-09 00:31:00 +01:00
*
* 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.
*
2013-03-18 01:55:59 +01:00
* $Id: amigaos.c,v 1.7 2007-02-28 14:45:48 yangtse Exp $
2009-01-09 00:31:00 +01:00
***************************************************************************/
2013-03-18 01:55:59 +01:00
#ifdef __AMIGA__ /* Any AmigaOS flavour */
2009-01-09 00:31:00 +01:00
2013-03-17 23:23:20 +01:00
#include "amigaos.h"
2013-03-18 01:55:59 +01:00
#include <amitcp/socketbasetags.h>
2013-03-17 23:23:20 +01:00
2009-01-09 00:31:00 +01:00
struct Library *SocketBase = NULL;
extern int errno, h_errno;
#ifdef __libnix__
#include <stabs.h>
void __request(const char *msg);
#else
2013-03-18 01:55:59 +01:00
# define __request( msg ) Printf( msg "\n\a")
2009-01-09 00:31:00 +01:00
#endif
2013-03-18 01:55:59 +01:00
void amiga_cleanup()
2009-01-09 00:31:00 +01:00
{
2013-03-18 01:55:59 +01:00
if(SocketBase) {
CloseLibrary(SocketBase);
SocketBase = NULL;
}
2009-01-09 00:31:00 +01:00
}
2013-03-18 01:55:59 +01:00
BOOL amiga_init()
2009-01-09 00:31:00 +01:00
{
2013-03-18 01:55:59 +01: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,
// SBTM_SETVAL(SBTC_HERRNOLONGPTR), (ULONG) &h_errno,
SBTM_SETVAL(SBTC_LOGTAGPTR), (ULONG) "cURL",
TAG_DONE)) {
__request("SocketBaseTags ERROR");
return FALSE;
}
2009-01-09 00:31:00 +01:00
#ifndef __libnix__
2013-03-18 01:55:59 +01:00
atexit(amiga_cleanup);
2009-01-09 00:31:00 +01:00
#endif
2013-03-18 01:55:59 +01:00
return TRUE;
2009-01-09 00:31:00 +01:00
}
#ifdef __libnix__
2013-03-18 01:55:59 +01:00
ADD2EXIT(amiga_cleanup,-50);
2009-01-09 00:31:00 +01:00
#endif
2013-03-18 01:55:59 +01:00
#endif /* __AMIGA__ */