LinuxNetworkInterfaceMarshal.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. //
  2. // System.Net.NetworkInformation.NetworkInterface
  3. //
  4. // Authors:
  5. // Eric Butler ([email protected])
  6. //
  7. // Copyright (c) 2008 Eric Butler
  8. //
  9. // Permission is hereby granted, free of charge, to any person obtaining
  10. // a copy of this software and associated documentation files (the
  11. // "Software"), to deal in the Software without restriction, including
  12. // without limitation the rights to use, copy, modify, merge, publish,
  13. // distribute, sublicense, and/or sell copies of the Software, and to
  14. // permit persons to whom the Software is furnished to do so, subject to
  15. // the following conditions:
  16. //
  17. // The above copyright notice and this permission notice shall be
  18. // included in all copies or substantial portions of the Software.
  19. //
  20. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  21. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  22. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  23. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  24. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  25. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  26. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  27. //
  28. using System;
  29. using System.Runtime.InteropServices;
  30. namespace System.Net.NetworkInformation {
  31. [StructLayout(LayoutKind.Explicit)]
  32. struct ifa_ifu
  33. {
  34. [FieldOffset (0)]
  35. public IntPtr ifu_broadaddr;
  36. [FieldOffset (0)]
  37. public IntPtr ifu_dstaddr;
  38. }
  39. [StructLayout(LayoutKind.Sequential)]
  40. struct ifaddrs
  41. {
  42. public IntPtr ifa_next;
  43. public string ifa_name;
  44. public uint ifa_flags;
  45. public IntPtr ifa_addr;
  46. public IntPtr ifa_netmask;
  47. public ifa_ifu ifa_ifu;
  48. public IntPtr ifa_data;
  49. }
  50. [StructLayout(LayoutKind.Sequential)]
  51. struct sockaddr_in
  52. {
  53. public ushort sin_family;
  54. public ushort sin_port;
  55. public uint sin_addr;
  56. }
  57. [StructLayout(LayoutKind.Sequential)]
  58. struct sockaddr_in6
  59. {
  60. public ushort sin6_family; /* AF_INET6 */
  61. public ushort sin6_port; /* Transport layer port # */
  62. public uint sin6_flowinfo; /* IPv6 flow information */
  63. public in6_addr sin6_addr; /* IPv6 address */
  64. public uint sin6_scope_id; /* scope id (new in RFC2553) */
  65. }
  66. [StructLayout(LayoutKind.Sequential)]
  67. struct in6_addr
  68. {
  69. [MarshalAs (UnmanagedType.ByValArray, SizeConst=16)]
  70. public byte[] u6_addr8;
  71. }
  72. [StructLayout(LayoutKind.Sequential)]
  73. struct sockaddr_ll
  74. {
  75. public ushort sll_family;
  76. public ushort sll_protocol;
  77. public int sll_ifindex;
  78. public ushort sll_hatype;
  79. public byte sll_pkttype;
  80. public byte sll_halen;
  81. [MarshalAs (UnmanagedType.ByValArray, SizeConst=8)]
  82. public byte[] sll_addr;
  83. }
  84. enum LinuxArpHardware {
  85. ETHER = 1,
  86. EETHER = 2,
  87. PRONET = 4,
  88. ATM = 19,
  89. SLIP = 256,
  90. PPP = 512,
  91. LOOPBACK = 772,
  92. FDDI = 774,
  93. TUNNEL = 768,
  94. TUNNEL6 = 769
  95. }
  96. }