diff options
author | Peter Powell <petpow@saberuk.com> | 2013-07-07 14:27:54 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2013-07-16 21:48:53 +0100 |
commit | 22f013a06f6015ab7601329a632001770cd14941 (patch) | |
tree | beafd72407d56185b39b6a90dc1d63a4eafa052c /make/test | |
parent | 6033f1d6fa3d37e068a56c29ef47b220abb3174d (diff) |
Use the preprocessor to check for TCP deferring support.
Diffstat (limited to 'make/test')
-rw-r--r-- | make/test/so_acceptfilter.cpp | 27 | ||||
-rw-r--r-- | make/test/tcp_defer_accept.cpp | 27 |
2 files changed, 0 insertions, 54 deletions
diff --git a/make/test/so_acceptfilter.cpp b/make/test/so_acceptfilter.cpp deleted file mode 100644 index 0fd4cda4f..000000000 --- a/make/test/so_acceptfilter.cpp +++ /dev/null @@ -1,27 +0,0 @@ -/* - * InspIRCd -- Internet Relay Chat Daemon - * - * - * This file is part of InspIRCd. InspIRCd 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, version 2. - * - * 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, see <http://www.gnu.org/licenses/>. - */ - -#include <sys/socket.h> - -#ifndef SO_ACCEPTFILTER - #error -#endif - -int main() -{ - return 0; -} diff --git a/make/test/tcp_defer_accept.cpp b/make/test/tcp_defer_accept.cpp deleted file mode 100644 index 191b1ac70..000000000 --- a/make/test/tcp_defer_accept.cpp +++ /dev/null @@ -1,27 +0,0 @@ -/* - * InspIRCd -- Internet Relay Chat Daemon - * - * - * This file is part of InspIRCd. InspIRCd 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, version 2. - * - * 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, see <http://www.gnu.org/licenses/>. - */ - -#include <netinet/tcp.h> - -#ifndef TCP_DEFER_ACCEPT - #error -#endif - -int main() -{ - return 0; -} |