Deleted Added
full compact
20c20
< * $FreeBSD: head/sbin/ipfw/ipfw2.h 200567 2009-12-15 09:46:27Z luigi $
---
> * $FreeBSD: head/sbin/ipfw/ipfw2.h 204591 2010-03-02 17:40:48Z luigi $
38c38
< int do_pipe; /* this cmd refers to a pipe */
---
> int do_pipe; /* this cmd refers to a pipe/queue/sched */
84a85
> TOK_LINK,
85a87,88
> TOK_FLOWSET,
> TOK_SCHED,
153a157,158
> TOK_FLOW_MASK,
> TOK_SCHED_MASK,
156c161
< TOK_PIPE_PROFILE,
---
> TOK_PROFILE,
161a167
> /* dummynet tokens */
162a169,173
> TOK_LMAX,
> TOK_PRI,
> TOK_TYPE,
> TOK_SLOTSIZE,
>
195c206,207
< #define NEED1(msg) {if (!ac) errx(EX_USAGE, msg);}
---
> #define NEED(_p, msg) {if (!_p) errx(EX_USAGE, msg);}
> #define NEED1(msg) {if (!(*av)) errx(EX_USAGE, msg);}
239c251
< void ipfw_add(int ac, char *av[]);
---
> void ipfw_add(char *av[]);
243c255
< void ipfw_sets_handler(int ac, char *av[]);
---
> void ipfw_sets_handler(char *av[]);
245,246c257,258
< void ipfw_sysctl_handler(int ac, char *av[], int which);
< void ipfw_delete(int ac, char *av[]);
---
> void ipfw_sysctl_handler(char *av[], int which);
> void ipfw_delete(char *av[]);
258c270,271
< void ipfw_list_pipes(void *data, uint nbytes, int ac, char *av[]);
---
> void dummynet_list(int ac, char *av[], int show_counters);
> void dummynet_flush(void);