|
|
|
@ -64,7 +64,6 @@ void TmModuleReceiveIPFWRegister (void)
|
|
|
|
|
tmm_modules[TMM_RECEIVEIPFW].Func = NULL;
|
|
|
|
|
tmm_modules[TMM_RECEIVEIPFW].ThreadExitPrintStats = NULL;
|
|
|
|
|
tmm_modules[TMM_RECEIVEIPFW].ThreadDeinit = NULL;
|
|
|
|
|
tmm_modules[TMM_RECEIVEIPFW].RegisterTests = NULL;
|
|
|
|
|
tmm_modules[TMM_RECEIVEIPFW].flags = TM_FLAG_RECEIVE_TM;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -75,7 +74,6 @@ void TmModuleVerdictIPFWRegister (void)
|
|
|
|
|
tmm_modules[TMM_VERDICTIPFW].Func = NULL;
|
|
|
|
|
tmm_modules[TMM_VERDICTIPFW].ThreadExitPrintStats = NULL;
|
|
|
|
|
tmm_modules[TMM_VERDICTIPFW].ThreadDeinit = NULL;
|
|
|
|
|
tmm_modules[TMM_VERDICTIPFW].RegisterTests = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TmModuleDecodeIPFWRegister (void)
|
|
|
|
@ -85,7 +83,6 @@ void TmModuleDecodeIPFWRegister (void)
|
|
|
|
|
tmm_modules[TMM_DECODEIPFW].Func = NULL;
|
|
|
|
|
tmm_modules[TMM_DECODEIPFW].ThreadExitPrintStats = NULL;
|
|
|
|
|
tmm_modules[TMM_DECODEIPFW].ThreadDeinit = NULL;
|
|
|
|
|
tmm_modules[TMM_DECODEIPFW].RegisterTests = NULL;
|
|
|
|
|
tmm_modules[TMM_DECODEIPFW].cap_flags = 0;
|
|
|
|
|
tmm_modules[TMM_DECODEIPFW].flags = TM_FLAG_DECODE_TM;
|
|
|
|
|
}
|
|
|
|
@ -164,7 +161,6 @@ void TmModuleReceiveIPFWRegister (void)
|
|
|
|
|
tmm_modules[TMM_RECEIVEIPFW].cap_flags = SC_CAP_NET_ADMIN | SC_CAP_NET_RAW |
|
|
|
|
|
SC_CAP_NET_BIND_SERVICE |
|
|
|
|
|
SC_CAP_NET_BROADCAST; /** \todo untested */
|
|
|
|
|
tmm_modules[TMM_RECEIVEIPFW].RegisterTests = NULL;
|
|
|
|
|
tmm_modules[TMM_RECEIVEIPFW].flags = TM_FLAG_RECEIVE_TM;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -181,7 +177,6 @@ void TmModuleVerdictIPFWRegister (void)
|
|
|
|
|
tmm_modules[TMM_VERDICTIPFW].ThreadDeinit = VerdictIPFWThreadDeinit;
|
|
|
|
|
tmm_modules[TMM_VERDICTIPFW].cap_flags = SC_CAP_NET_ADMIN | SC_CAP_NET_RAW |
|
|
|
|
|
SC_CAP_NET_BIND_SERVICE; /** \todo untested */
|
|
|
|
|
tmm_modules[TMM_VERDICTIPFW].RegisterTests = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -195,7 +190,6 @@ void TmModuleDecodeIPFWRegister (void)
|
|
|
|
|
tmm_modules[TMM_DECODEIPFW].Func = DecodeIPFW;
|
|
|
|
|
tmm_modules[TMM_DECODEIPFW].ThreadExitPrintStats = NULL;
|
|
|
|
|
tmm_modules[TMM_DECODEIPFW].ThreadDeinit = DecodeIPFWThreadDeinit;
|
|
|
|
|
tmm_modules[TMM_DECODEIPFW].RegisterTests = NULL;
|
|
|
|
|
tmm_modules[TMM_DECODEIPFW].flags = TM_FLAG_DECODE_TM;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|