Lines Matching full:pipe

19     Add a pipe
24 Delete a pipe
44 with a tag such as "pipe 10" or "queue 5" which tells what to
179 (plus one for each 'pipe X config').
184 (plus one for each 'pipe X config').
292 TRADITIONAL DUMMYNET QUEUES "queue N config ... pipe M ..."
295 TRADITIONAL DUMMYNET PIPES "pipe N config ..."
303 DELAY PROFILE "pipe N config profile ..."
310 "pipe N config ..." configures:
352 To create a pipe, queue or scheduler, the user should type commands like:
353 "ipfw pipe x config"
354 "ipfw queue y config pipe x"
355 "ipfw pipe x config sched <type>"
360 to configure a pipe all three structs (dn_link, dn_sch, dn_fs) are needed,
361 plus the delay profile struct if the pipe has a delay profile.
367 if it is configuring a pipe, a queue, or a scheduler. Then there are structs
371 To support the insertion of pipe and queue using the old syntax, when adding
372 a pipe it's necessary to create a FIFO flowset and a FIFO scheduler, which
375 Add a pipe
377 A pipe is only a template for a link.
378 If the pipe already exists, parameters are updated. If a delay profile exists
380 If the pipe doesn't exist a new one is created. After the creation, the
382 be linked with this pipe. If so, these flowset will be of wf2q+ type (for
419 "ipfw [-v] pipe|queue [x] list|show"
421 pipe, all scheduler, all flowset, plus all scheduler instances and all queues.
424 The buffer sent start with all pipe from the system. The entire struct dn_link
440 "ipfw pipe|queue x delete". XXX sched?
444 Delete of pipe x
446 A pipe can be deleted by the user through the command 'ipfw pipe x delete'.
447 To delete a pipe, the pipe is removed from the pipe list, and then deleted.
448 Also the scheduler associated with this pipe should be deleted.
528 dummynet in FreeBSD 8 (the FreeBSD 8 version includes support to pipe delay
550 (pipe or queue) to delete from the buffer received and build a new struct
601 'ipfw pipe' and 'ipfw queue'.
605 A new command, 'ipfw pipe x config sched <type>' is supported to add a new
608 - ipfw pipe x config ...
609 create a new pipe with the link parameters
614 - ipfw queue y config pipe x ...
619 If pipe x exists and sched does not exist, a new wf2q+ scheduler is
623 - ipfw pipe x config sched <type> ...
628 - ipfw pipe x delete
629 delete the pipe x
642 ipfw pipe 10 config bw 1M delay 15 // create a pipe with band and delay
645 ipfw queue 5 config pipe 10 weight 56 // create a flowset. This flowset
646 will be of wf2q+ because a pipe 10
650 ipfw queue 5 config pipe 10 weight 56 // Create a flowset. Scheduler 10
654 ipfw pipe 10 config bw... // Create a pipe, a FIFO flowset and scheduler.
655 Because of a flowset with 'pipe 10' exists,
660 ipfw pipe 10 config bw... // Create a pipe, a FIFO flowset and scheduler.
661 ipfw pipe 10 config sched rr // Create a scheduler of type RR, linked to
662 pipe 10
663 ipfw queue 5 config pipe 10 weight 56 // Create a flowset 5. This flowset
668 ipfw pipe 10 config sched rr // Create a scheduler of type RR, linked to
669 pipe 10 (not exist yet)
670 ipfw pipe 10 config bw... // Create a pipe, a FIFO flowset and scheduler.
671 ipfw queue 5 config pipe 10 weight 56 // Create a flowset 5.This flowset
674 ipfw pipe 10 config sched wf2q+ // Modify the type of scheduler 10. It
690 'ipfw pipe x config sched <type> [mask ... ...]'
709 'ipfw queue z config pipe x [mask... ...]'