CMake/Utilities/cmcurl/amigaos.c

75 lines
1.9 KiB
C
Raw Normal View History

2005-06-24 17:02:17 +04:00
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
2007-03-15 22:22:15 +03:00
* Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al.
2005-06-24 17:02:17 +04: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.
*
* $Id$
***************************************************************************/
#include "amigaos.h"
2007-03-15 22:22:15 +03:00
#include <amitcp/socketbasetags.h>
2005-06-24 17:02:17 +04:00
struct Library *SocketBase = NULL;
2007-03-15 22:22:15 +03:00
extern int errno, h_errno;
#ifdef __libnix__
#include <stabs.h>
void __request(const char *msg);
#else
# define __request( msg ) Printf( msg "\n\a")
#endif
2005-06-24 17:02:17 +04:00
void amiga_cleanup()
{
2007-03-15 22:22:15 +03:00
if(SocketBase) {
2005-06-24 17:02:17 +04:00
CloseLibrary(SocketBase);
2007-03-15 22:22:15 +03:00
SocketBase = NULL;
}
2005-06-24 17:02:17 +04:00
}
BOOL amiga_init()
{
if(!SocketBase)
SocketBase = OpenLibrary("bsdsocket.library", 4);
2007-03-15 22:22:15 +03:00
2005-06-24 17:02:17 +04:00
if(!SocketBase) {
2007-03-15 22:22:15 +03:00
__request("No TCP/IP Stack running!");
2005-06-24 17:02:17 +04:00
return FALSE;
}
2007-03-15 22:22:15 +03:00
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;
}
#ifndef __libnix__
2005-06-24 17:02:17 +04:00
atexit(amiga_cleanup);
2007-03-15 22:22:15 +03:00
#endif
2005-06-24 17:02:17 +04:00
return TRUE;
}
2007-03-15 22:22:15 +03:00
#ifdef __libnix__
ADD2EXIT(amiga_cleanup,-50);
#endif