From: sangorrin Date: Mon, 2 Feb 2009 12:04:00 +0000 (+0000) Subject: TODO differentiate between enabling all the support and the limited public support... X-Git-Url: https://rtime.felk.cvut.cz/gitweb/frescor/fna.git/commitdiff_plain/bc1781fdf86c31eec16fb33dc2deb6e4770dcb27 TODO differentiate between enabling all the support and the limited public support (network to bytes etc..) git-svn-id: http://www.frescor.org/private/svn/frescor/fna/trunk@1522 35b4ef3e-fd22-0410-ab77-dab3279adceb --- diff --git a/src/fna_configuration.c b/src/fna_configuration.c index 656f9c6..97c29bd 100644 --- a/src/fna_configuration.c +++ b/src/fna_configuration.c @@ -70,42 +70,28 @@ //============================================================== #include "fna_configuration.h" - -#ifdef RTEP_FNA_ENABLED - #include "../src_rtep/rtep_fna.h" // for rtep_fna_operations -#endif +#include "../src_frescan/frescan_bwres_fna.h" // for frescan_fna_operations +#include "../src_rtep/rtep_fna.h" // for rtep_fna_operations #ifdef UNIX_FNA_ENABLED #include "../src_unix/unix_fna.h" // for unix_fna_operations #endif -#ifdef FRESCAN_FNA_ENABLED - #include "../src_frescan/frescan_bwres_fna.h" // for frescan_fna_operations -#endif - #ifdef FWP_FNA_ENABLED #include // for fwp_fna_operations #endif fna_operations_t *fna_operations[FNA_MAX_NETWORKS] = { -#ifdef FRESCAN_FNA_ENABLED &frescan_fna_operations, -#else - NULL, -#endif -#ifdef RTEP_FNA_ENABLED &rtep_fna_operations, -#else - NULL, -#endif #ifdef UNIX_FNA_ENABLED &unix_fna_operations, #else - NULL, + NULL, #endif #ifdef FWP_FNA_ENABLED &fwp_fna_operations #else - NULL + NULL #endif };