Home | History | Annotate | Download | only in extensions

Lines Matching full:info

65 	struct xt_cgroup_info_v1 *info = cb->data;
71 info->has_path = true;
73 info->invert_path = true;
76 info->has_classid = true;
78 info->invert_classid = true;
86 const struct xt_cgroup_info_v0 *info = (void *) match->data;
88 printf(" cgroup %s%u", info->invert ? "! ":"", info->id);
93 const struct xt_cgroup_info_v0 *info = (void *) match->data;
95 printf("%s --cgroup %u", info->invert ? " !" : "", info->id);
101 const struct xt_cgroup_info_v1 *info = (void *)match->data;
104 if (info->has_path)
105 printf(" %s%s", info->invert_path ? "! ":"", info->path);
106 if (info->has_classid)
107 printf(" %s%u", info->invert_classid ? "! ":"", info->classid);
112 const struct xt_cgroup_info_v1 *info = (void *)match->data;
114 if (info->has_path) {
115 printf("%s --path", info->invert_path ? " !" : "");
116 xtables_save_string(info->path);
119 if (info->has_classid)
120 printf("%s --cgroup %u", info->invert_classid ? " !" : "",
121 info->classid);
127 const struct xt_cgroup_info_v0 *info = (void *)params->match->data;
129 xt_xlate_add(xl, "meta cgroup %s%u", info->invert ? "!= " : "",
130 info->id);
137 const struct xt_cgroup_info_v1 *info = (void *)params->match->data;
139 if (info->has_path)
142 if (info->has_classid)
144 info->invert_classid ? "!= " : "",
145 info->classid);