1 /* $KAME: qop_priq.h,v 1.1 2000/10/18 09:15:19 kjc Exp $ */ 2 /* 3 * Copyright (C) 2000 4 * Sony Computer Science Laboratories, Inc. All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY SONY CSL AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL SONY CSL OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 */ 27 28 #include <altq/altq_priq.h> 29 30 /* 31 * priq private ifinfo structure 32 */ 33 struct priq_ifinfo { 34 struct classinfo *default_class; /* default class */ 35 }; 36 37 /* 38 * priq private classinfo structure 39 */ 40 struct priq_classinfo { 41 int pri; 42 int qlimit; 43 int flags; 44 }; 45 46 int priq_interface_parser(const char *ifname, int argc, char **argv); 47 int priq_class_parser(const char *ifname, const char *class_name, 48 const char *parent_name, int argc, char **argv); 49 50 int qcmd_priq_add_if(const char *ifname, u_int bandwidth, int flags); 51 int qcmd_priq_add_class(const char *ifname, const char *class_name, 52 int pri, int qlimit, int flags); 53 int qcmd_priq_modify_class(const char *ifname, const char *class_name, 54 int pri, int qlimit, int flags); 55 int qop_priq_add_if(struct ifinfo **rp, const char *ifname, 56 u_int bandwidth, int flags); 57 int qop_priq_add_class(struct classinfo **rp, const char *class_name, 58 struct ifinfo *ifinfo, 59 int pri, int qlimit, int flags); 60 int qop_priq_modify_class(struct classinfo *clinfo, 61 int pri, int qlimit, int flags); 62