Blame sysdeps/unix/sysv/linux/net/if_shaper.h

Packit 6c4009
/* Copyright (C) 1998-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#ifndef _NET_IF_SHAPER_H
Packit 6c4009
#define _NET_IF_SHAPER_H 1
Packit 6c4009
Packit 6c4009
#include <sys/types.h>
Packit 6c4009
#include <stdint.h>
Packit 6c4009
#include <net/if.h>
Packit 6c4009
#include <sys/ioctl.h>
Packit 6c4009
Packit 6c4009
__BEGIN_DECLS
Packit 6c4009
Packit 6c4009
#define SHAPER_QLEN	10
Packit 6c4009
/*
Packit 6c4009
 *	This is a bit speed dependant (read it shouldnt be a constant!)
Packit 6c4009
 *
Packit 6c4009
 *	5 is about right for 28.8 upwards. Below that double for every
Packit 6c4009
 *	halving of speed or so. - ie about 20 for 9600 baud.
Packit 6c4009
 */
Packit 6c4009
#define SHAPER_LATENCY	(5 * HZ)
Packit 6c4009
#define SHAPER_MAXSLIP	2
Packit 6c4009
#define SHAPER_BURST	(HZ / 50)	/* Good for >128K then */
Packit 6c4009
Packit 6c4009
#define SHAPER_SET_DEV		0x0001
Packit 6c4009
#define SHAPER_SET_SPEED	0x0002
Packit 6c4009
#define SHAPER_GET_DEV		0x0003
Packit 6c4009
#define SHAPER_GET_SPEED	0x0004
Packit 6c4009
Packit 6c4009
struct shaperconf
Packit 6c4009
{
Packit 6c4009
  uint16_t ss_cmd;
Packit 6c4009
  union
Packit 6c4009
  {
Packit 6c4009
    char ssu_name[14];
Packit 6c4009
    uint32_t ssu_speed;
Packit 6c4009
  } ss_u;
Packit 6c4009
#define ss_speed ss_u.ssu_speed
Packit 6c4009
#define ss_name ss_u.ssu_name
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
__END_DECLS
Packit 6c4009
Packit 6c4009
#endif /* net/if_shaper.h */