Home | History | Annotate | Line # | Download | only in libaltq
qop_cbq.h revision 1.1
      1  1.1  thorpej /*	$KAME: qop_cbq.h,v 1.2 2000/10/18 09:15:18 kjc Exp $	*/
      2  1.1  thorpej /*
      3  1.1  thorpej  * Copyright (c) Sun Microsystems, Inc. 1993-1998 All rights reserved.
      4  1.1  thorpej  *
      5  1.1  thorpej  * Redistribution and use in source and binary forms, with or without
      6  1.1  thorpej  * modification, are permitted provided that the following conditions
      7  1.1  thorpej  * are met:
      8  1.1  thorpej  *
      9  1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     10  1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     11  1.1  thorpej  *
     12  1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     15  1.1  thorpej  *
     16  1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     17  1.1  thorpej  *    must display the following acknowledgement:
     18  1.1  thorpej  *      This product includes software developed by the SMCC Technology
     19  1.1  thorpej  *      Development Group at Sun Microsystems, Inc.
     20  1.1  thorpej  *
     21  1.1  thorpej  * 4. The name of the Sun Microsystems, Inc nor may not be used to endorse or
     22  1.1  thorpej  *      promote products derived from this software without specific prior
     23  1.1  thorpej  *      written permission.
     24  1.1  thorpej  *
     25  1.1  thorpej  * SUN MICROSYSTEMS DOES NOT CLAIM MERCHANTABILITY OF THIS SOFTWARE OR THE
     26  1.1  thorpej  * SUITABILITY OF THIS SOFTWARE FOR ANY PARTICULAR PURPOSE.  The software is
     27  1.1  thorpej  * provided "as is" without express or implied warranty of any kind.
     28  1.1  thorpej  *
     29  1.1  thorpej  * These notices must be retained in any copies of any part of this software.
     30  1.1  thorpej  */
     31  1.1  thorpej 
     32  1.1  thorpej #include <altq/altq_rmclass.h>
     33  1.1  thorpej #include <altq/altq_cbq.h>
     34  1.1  thorpej 
     35  1.1  thorpej /* cbq admission types */
     36  1.1  thorpej typedef enum {
     37  1.1  thorpej 	CBQ_QOS_NONE,
     38  1.1  thorpej 	CBQ_QOS_GUARANTEED,
     39  1.1  thorpej 	CBQ_QOS_PREDICTIVE,
     40  1.1  thorpej 	CBQ_QOS_CNTR_DELAY,
     41  1.1  thorpej 	CBQ_QOS_CNTR_LOAD
     42  1.1  thorpej }  cbq_tos_t;
     43  1.1  thorpej 
     44  1.1  thorpej /*
     45  1.1  thorpej  * cbq private ifinfo structure
     46  1.1  thorpej  */
     47  1.1  thorpej struct cbq_ifinfo {
     48  1.1  thorpej 	struct classinfo *root_class;		/* root class */
     49  1.1  thorpej 	struct classinfo *default_class;	/* default class */
     50  1.1  thorpej 	struct classinfo *ctl_class;		/* control class */
     51  1.1  thorpej 
     52  1.1  thorpej 	double	nsPerByte;		/* bandwidth in ns per sec */
     53  1.1  thorpej 	int	is_wrr;			/* use weighted-round robin */
     54  1.1  thorpej 	int	is_efficient;		/* use work-conserving */
     55  1.1  thorpej };
     56  1.1  thorpej 
     57  1.1  thorpej /*
     58  1.1  thorpej  * cbq private classinfo structure
     59  1.1  thorpej  */
     60  1.1  thorpej struct cbq_classinfo {
     61  1.1  thorpej 	u_int	bandwidth;		/* bandwidth in bps */
     62  1.1  thorpej 	u_int	allocated;		/* bandwidth used by children */
     63  1.1  thorpej 
     64  1.1  thorpej 	u_int	maxdelay;
     65  1.1  thorpej 	u_int	maxburst;
     66  1.1  thorpej 	u_int	minburst;
     67  1.1  thorpej 	u_int	av_pkt_size;
     68  1.1  thorpej 	u_int	max_pkt_size;
     69  1.1  thorpej 
     70  1.1  thorpej 	cbq_class_spec_t	class_spec;	/* class parameters */
     71  1.1  thorpej };
     72  1.1  thorpej 
     73  1.1  thorpej int cbq_interface_parser(const char *ifname, int argc, char **argv);
     74  1.1  thorpej int cbq_class_parser(const char *ifname, const char *class_name,
     75  1.1  thorpej 		     const char *parent_name, int argc, char **argv);
     76  1.1  thorpej 
     77  1.1  thorpej int qcmd_cbq_add_if(const char *ifname, u_int bandwidth,
     78  1.1  thorpej 		    int is_wrr, int efficient);
     79  1.1  thorpej int qcmd_cbq_add_class(const char *ifname, const char *class_name,
     80  1.1  thorpej 		       const char *parent_name, const char *borrow_name,
     81  1.1  thorpej 		       u_int pri, u_int bandwidth,
     82  1.1  thorpej 		       u_int maxdelay, u_int maxburst, u_int minburst,
     83  1.1  thorpej 		       u_int av_pkt_size, u_int max_pkt_size,
     84  1.1  thorpej 		       int admission_type, int flags);
     85  1.1  thorpej int qcmd_cbq_modify_class(const char *ifname, const char *class_name,
     86  1.1  thorpej 			  u_int pri, u_int bandwidth,
     87  1.1  thorpej 			  u_int maxdelay, u_int maxburst, u_int minburst,
     88  1.1  thorpej 			  u_int av_pkt_size, u_int max_pkt_size, int flags);
     89  1.1  thorpej 
     90  1.1  thorpej int qop_cbq_add_if(struct ifinfo **rp, const char *ifname,
     91  1.1  thorpej 		   u_int bandwidth, int is_wrr, int efficient);
     92  1.1  thorpej int qop_cbq_add_class(struct classinfo **rp, const char *class_name,
     93  1.1  thorpej 		      struct ifinfo *ifinfo, struct classinfo *parent,
     94  1.1  thorpej 		      struct classinfo *borrow, u_int pri, u_int bandwidth,
     95  1.1  thorpej 		      u_int maxdelay, u_int maxburst, u_int minburst,
     96  1.1  thorpej 		      u_int av_pkt_size, u_int max_pkt_size,
     97  1.1  thorpej 		      int admission_type, int flags);
     98  1.1  thorpej int qop_cbq_modify_class(struct classinfo *clinfo, u_int pri, u_int bandwidth,
     99  1.1  thorpej 			 u_int maxdelay, u_int maxburst, u_int minburst,
    100  1.1  thorpej 			 u_int av_pkt_size, u_int max_pkt_size, int flags);
    101  1.1  thorpej 
    102