mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.7 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/base/dietlibc/neteconet_ec_h.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. needed by net-tools
  20. --- /dev/null Thu Jan 1 00:00:00 1970
  21. +++ ./include/neteconet/ec.h Sat Jan 11 01:42:46 2003
  22. @@ -0,0 +1,52 @@
  23. +/* Definitions for use with Linux AF_ECONET sockets.
  24. + Copyright (C) 1998 Free Software Foundation, Inc.
  25. + This file is part of the GNU C Library.
  26. +
  27. + The GNU C Library is free software; you can redistribute it and/or
  28. + modify it under the terms of the GNU Lesser General Public
  29. + License as published by the Free Software Foundation; either
  30. + version 2.1 of the License, or (at your option) any later version.
  31. +
  32. + The GNU C Library is distributed in the hope that it will be useful,
  33. + but WITHOUT ANY WARRANTY; without even the implied warranty of
  34. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  35. + Lesser General Public License for more details.
  36. +
  37. + You should have received a copy of the GNU Lesser General Public
  38. + License along with the GNU C Library; if not, write to the Free
  39. + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  40. + 02111-1307 USA. */
  41. +
  42. +#ifndef _NETECONET_EC_H
  43. +#define _NETECONET_EC_H 1
  44. +
  45. +#include <features.h>
  46. +/*#include <bits/sockaddr.h>*/
  47. +
  48. +struct ec_addr
  49. + {
  50. + unsigned char station; /* Station number. */
  51. + unsigned char net; /* Network number. */
  52. + };
  53. +
  54. +struct sockaddr_ec
  55. + {
  56. + sa_family_t sec_family;
  57. + unsigned char port; /* Port number. */
  58. + unsigned char cb; /* Control/flag byte. */
  59. + unsigned char type; /* Type of message. */
  60. + struct ec_addr addr;
  61. + unsigned long cookie;
  62. + };
  63. +
  64. +#define ECTYPE_PACKET_RECEIVED 0 /* Packet received */
  65. +#define ECTYPE_TRANSMIT_STATUS 0x10 /* Transmit completed */
  66. +
  67. +#define ECTYPE_TRANSMIT_OK 1
  68. +#define ECTYPE_TRANSMIT_NOT_LISTENING 2
  69. +#define ECTYPE_TRANSMIT_NET_ERROR 3
  70. +#define ECTYPE_TRANSMIT_NO_CLOCK 4
  71. +#define ECTYPE_TRANSMIT_LINE_JAMMED 5
  72. +#define ECTYPE_TRANSMIT_NOT_PRESENT 6
  73. +
  74. +#endif