OpenSDE Packages Database (without history before r20070)
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.

74 lines
2.6 KiB

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