- 论坛徽章:
- 36
|
原帖由 jaycu 于 2008-8-6 17:36 发表 ![]()
好的,谢谢,我再好好看看
看一下iptables的应用程序,iptables.c中generate_entry函数,应该可以解答你的问题:
- static struct ipt_entry *
- generate_entry(const struct ipt_entry *fw,
- struct iptables_match *matches,
- struct ipt_entry_target *target)
- {
- unsigned int size;
- struct iptables_match *m;
- struct ipt_entry *e;
- size = sizeof(struct ipt_entry);
- for (m = matches; m; m = m->next) {
- if (!m->used)
- continue;
- size += m->m->u.match_size;
- }
- e = fw_malloc(size + target->u.target_size);
- *e = *fw;
- e->target_offset = size;
- e->next_offset = size + target->u.target_size;
- size = 0;
- for (m = matches; m; m = m->next) {
- if (!m->used)
- continue;
- memcpy(e->elems + size, m->m, m->m->u.match_size);
- size += m->m->u.match_size;
- }
- memcpy(e->elems + size, target, target->u.target_size);
- return e;
- }
复制代码 |
|