コード例 #1
0
ファイル: xt_string.c プロジェクト: Arakmar/G3MOD
static void string_mt_destroy(const struct xt_mtdtor_param *par)
{
	textsearch_destroy(STRING_TEXT_PRIV(par->matchinfo)->config);
}
コード例 #2
0
ファイル: xt_string.c プロジェクト: 274914765/C
static void string_mt_destroy(const struct xt_match *match, void *matchinfo)
{
    textsearch_destroy(STRING_TEXT_PRIV(matchinfo)->config);
}
コード例 #3
0
ファイル: xt_string.c プロジェクト: FatSunHYS/OSCourseDesign
static void destroy(const struct xt_match *match, void *matchinfo,
		    unsigned int matchsize)
{
	textsearch_destroy(STRING_TEXT_PRIV(matchinfo)->config);
}