ioctls.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* Copyright (C) 1996, 1997, 1998, 2003 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. #ifndef _SYS_IOCTL_H
  16. # error "Never use <bits/ioctls.h> directly; include <sys/ioctl.h> instead."
  17. #endif
  18. /* Use the definitions from the kernel header files. */
  19. #include <asm/ioctls.h>
  20. /* Routing table calls. */
  21. #define SIOCADDRT 0x890B /* add routing table entry */
  22. #define SIOCDELRT 0x890C /* delete routing table entry */
  23. #define SIOCRTMSG 0x890D /* call to routing system */
  24. /* Socket configuration controls. */
  25. #define SIOCGIFNAME 0x8910 /* get iface name */
  26. #define SIOCSIFLINK 0x8911 /* set iface channel */
  27. #define SIOCGIFCONF 0x8912 /* get iface list */
  28. #define SIOCGIFFLAGS 0x8913 /* get flags */
  29. #define SIOCSIFFLAGS 0x8914 /* set flags */
  30. #define SIOCGIFADDR 0x8915 /* get PA address */
  31. #define SIOCSIFADDR 0x8916 /* set PA address */
  32. #define SIOCGIFDSTADDR 0x8917 /* get remote PA address */
  33. #define SIOCSIFDSTADDR 0x8918 /* set remote PA address */
  34. #define SIOCGIFBRDADDR 0x8919 /* get broadcast PA address */
  35. #define SIOCSIFBRDADDR 0x891a /* set broadcast PA address */
  36. #define SIOCGIFNETMASK 0x891b /* get network PA mask */
  37. #define SIOCSIFNETMASK 0x891c /* set network PA mask */
  38. #define SIOCGIFMETRIC 0x891d /* get metric */
  39. #define SIOCSIFMETRIC 0x891e /* set metric */
  40. #define SIOCGIFMEM 0x891f /* get memory address (BSD) */
  41. #define SIOCSIFMEM 0x8920 /* set memory address (BSD) */
  42. #define SIOCGIFMTU 0x8921 /* get MTU size */
  43. #define SIOCSIFMTU 0x8922 /* set MTU size */
  44. #define SIOCSIFNAME 0x8923 /* set interface name */
  45. #define SIOCSIFHWADDR 0x8924 /* set hardware address */
  46. #define SIOCGIFENCAP 0x8925 /* get/set encapsulations */
  47. #define SIOCSIFENCAP 0x8926
  48. #define SIOCGIFHWADDR 0x8927 /* Get hardware address */
  49. #define SIOCGIFSLAVE 0x8929 /* Driver slaving support */
  50. #define SIOCSIFSLAVE 0x8930
  51. #define SIOCADDMULTI 0x8931 /* Multicast address lists */
  52. #define SIOCDELMULTI 0x8932
  53. #define SIOCGIFINDEX 0x8933 /* name -> if_index mapping */
  54. #define SIOGIFINDEX SIOCGIFINDEX /* misprint compatibility :-) */
  55. #define SIOCSIFPFLAGS 0x8934 /* set/get extended flags set */
  56. #define SIOCGIFPFLAGS 0x8935
  57. #define SIOCDIFADDR 0x8936 /* delete PA address */
  58. #define SIOCSIFHWBROADCAST 0x8937 /* set hardware broadcast addr */
  59. #define SIOCGIFCOUNT 0x8938 /* get number of devices */
  60. #define SIOCGIFBR 0x8940 /* Bridging support */
  61. #define SIOCSIFBR 0x8941 /* Set bridging options */
  62. #define SIOCGIFTXQLEN 0x8942 /* Get the tx queue length */
  63. #define SIOCSIFTXQLEN 0x8943 /* Set the tx queue length */
  64. /* ARP cache control calls. */
  65. /* 0x8950 - 0x8952 * obsolete calls, don't re-use */
  66. #define SIOCDARP 0x8953 /* delete ARP table entry */
  67. #define SIOCGARP 0x8954 /* get ARP table entry */
  68. #define SIOCSARP 0x8955 /* set ARP table entry */
  69. /* RARP cache control calls. */
  70. #define SIOCDRARP 0x8960 /* delete RARP table entry */
  71. #define SIOCGRARP 0x8961 /* get RARP table entry */
  72. #define SIOCSRARP 0x8962 /* set RARP table entry */
  73. /* Driver configuration calls */
  74. #define SIOCGIFMAP 0x8970 /* Get device parameters */
  75. #define SIOCSIFMAP 0x8971 /* Set device parameters */
  76. /* DLCI configuration calls */
  77. #define SIOCADDDLCI 0x8980 /* Create new DLCI device */
  78. #define SIOCDELDLCI 0x8981 /* Delete DLCI device */
  79. /* Device private ioctl calls. */
  80. /* These 16 ioctls are available to devices via the do_ioctl() device
  81. vector. Each device should include this file and redefine these
  82. names as their own. Because these are device dependent it is a good
  83. idea _NOT_ to issue them to random objects and hope. */
  84. #define SIOCDEVPRIVATE 0x89F0 /* to 89FF */
  85. /*
  86. * These 16 ioctl calls are protocol private
  87. */
  88. #define SIOCPROTOPRIVATE 0x89E0 /* to 89EF */