]> rtime.felk.cvut.cz Git - frescor/fna.git/blobdiff - src/fna_configuration.c
Added FWP to FNA. FNA ops extended for bind, unbind, send_endpoint_created, endpoint_...
[frescor/fna.git] / src / fna_configuration.c
index ecfc6b9f34e4474b5be5af54f2c87baa25fe41c2..3965553a8fe3e037a22e56d3472cf6b55bddcd59 100644 (file)
         #include "../src_frescan/frescan_bwres_fna.h" // for frescan_fna_operations
 #endif
 
+#ifdef FWP_FNA_ENABLED
+        #include "fwp_fna.h" // 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,
+#endif
+#ifdef FWP_FNA_ENABLED
+        &fwp_fna_operations
+#else
+       NULL
 #endif
-        NULL, // resource_id 1
-        NULL, // resource_id 2
-        NULL  // resource_id 3
 };