2007-02-08 00:19:40 +00:00
|
|
|
/***************************************************************************
|
|
|
|
|
* Copyright (C) 2007 by Lothar May *
|
|
|
|
|
* *
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
|
* (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
|
* along with this program; if not, write to the *
|
|
|
|
|
* Free Software Foundation, Inc., *
|
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
#error This source code is not for Win32.
|
|
|
|
|
#endif
|
|
|
|
|
|
2007-02-11 21:22:45 +00:00
|
|
|
#include <net/socket_startup.h>
|
2007-02-08 00:19:40 +00:00
|
|
|
|
2007-06-04 16:30:30 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
#include <unistd.h>
|
2007-06-04 16:19:11 +00:00
|
|
|
|
2007-02-08 00:19:40 +00:00
|
|
|
bool
|
|
|
|
|
socket_startup()
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
socket_cleanup()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-04 16:30:30 +00:00
|
|
|
bool
|
|
|
|
|
socket_has_sctp()
|
|
|
|
|
{
|
|
|
|
|
#ifdef IPPROTO_SCTP
|
|
|
|
|
int test = socket(AF_INET, SOCK_STREAM, IPPROTO_SCTP);
|
|
|
|
|
|
|
|
|
|
if (test == -1)
|
|
|
|
|
return false;
|
|
|
|
|
close(test);
|
|
|
|
|
return true;
|
|
|
|
|
#else
|
|
|
|
|
return false;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
2007-06-04 16:19:11 +00:00
|
|
|
|