473,382 Members | 1,480 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

GetIpNetTable

does anyone know how to implement the following? - I am very new to using
Marshalling and could really do with some help - it's late and I am tired -
I have spent all day on this and the net comes up with very little help - I
have followed lots of tutorials and looked at many peoples source - I am in
need of enlightenment ;) - thanks
[DllImport("iphlpapi.dll", EntryPoint="GetIpNetTable", SetLastError=true)]

public static extern int GetIpNetTable(IntPtr buffer,ref int Size, bool
Order);

I have got this far in the calling it- as below

IntPtr lpBuffer = IntPtr.Zero;

int size = 0;

int result = IPHelperAPI.GetIpNetTable(lpBuffer,ref size,true);

if(result != NO_ERROR)

{

Debug.WriteLine("NO ERROR");

lpBuffer = Marshal.AllocHGlobal(size);

result = IPHelperAPI.GetIpNetTable(lpBuffer,ref size,true);

if(result != NO_ERROR)

{

Marshal.FreeHGlobal(lpBuffer);

lpBuffer = IntPtr.Zero;

Debug.WriteLine("RETURN ERROR");

return;

}

Debug.WriteLine("I GOT THIS FAR");

// But canot allocate the structures from here - I hope someone out there
can pointer me in the right direction - good night all;;;

JJ
Nov 16 '05 #1
2 7008
James,

Here is how I would do it:

using System;
using System.Runtime.InteropServices;
using System.ComponentModel;

namespace ConsoleApplication5
{
class Program
{
// The max number of physical addresses.
const int MAXLEN_PHYSADDR = 8;

// Define the MIB_IPNETROW structure.
[StructLayout(LayoutKind.Sequential)]
struct MIB_IPNETROW
{
[MarshalAs(UnmanagedType.U4)]
public int dwIndex;
[MarshalAs(UnmanagedType.U4)]
public int dwPhysAddrLen;
[MarshalAs(UnmanagedType.ByValArray, SizeConst =
MAXLEN_PHYSADDR)]
byte[] bPhysAddr;
[MarshalAs(UnmanagedType.U4)]
public int dwAddr;
[MarshalAs(UnmanagedType.U4)]
public int dwType;
}

// Declare the GetIpNetTable function.
[DllImport("IpHlpApi.dll")]
[return: MarshalAs(UnmanagedType.U4)]
static extern int GetIpNetTable(
IntPtr pIpNetTable,
[MarshalAs(UnmanagedType.U4)]
ref int pdwSize,
bool bOrder);

// The insufficient buffer error.
const int ERROR_INSUFFICIENT_BUFFER = 122;

static void Main(string[] args)
{
// The number of bytes needed.
int bytesNeeded = 0;

// The result from the API call.
int result = GetIpNetTable(IntPtr.Zero, ref bytesNeeded, false);

// Call the function, expecting an insufficient buffer.
if (result != ERROR_INSUFFICIENT_BUFFER)
{
// Throw an exception.
throw new Win32Exception(result);
}

// Allocate the memory, do it in a try/finally block, to ensure
// that it is released.
IntPtr buffer = IntPtr.Zero;

// Try/finally.
try
{
// Allocate the memory.
buffer = Marshal.AllocCoTaskMem(bytesNeeded);

// Make the call again. If it did not succeed, then
// raise an error.
result = GetIpNetTable(buffer, ref bytesNeeded, false);

// If the result is not 0 (no error), then throw an
exception.
if (result != 0)
{
// Throw an exception.
throw new Win32Exception(result);
}

// Now we have the buffer, we have to marshal it. We can
read
// the first 4 bytes to get the length of the buffer.
int entries = Marshal.ReadInt32(buffer);

// Increment the memory pointer by the size of the int.
IntPtr currentBuffer = new IntPtr(buffer.ToInt64() +
sizeof(int));

// Allocate an array of entries.
MIB_IPNETROW[] table = new MIB_IPNETROW[entries];

// Cycle through the entries.
for (int index = 0; index < entries; index++)
{
// Call PtrToStructure, getting the structure
information.
table[index] = (MIB_IPNETROW) Marshal.PtrToStructure(new
IntPtr(currentBuffer.ToInt64() + (index *
Marshal.SizeOf(typeof(MIB_IPNETROW)))), typeof(MIB_IPNETROW));
}
}
finally
{
// Release the memory.
Marshal.FreeCoTaskMem(buffer);
}
}
}
}

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"James Jenkins" <Ja***@REMOVETHIS1STtamarsolutions.co.uk> wrote in message
news:OW****************@TK2MSFTNGP12.phx.gbl...
does anyone know how to implement the following? - I am very new to using
Marshalling and could really do with some help - it's late and I am
tired - I have spent all day on this and the net comes up with very little
help - I have followed lots of tutorials and looked at many peoples
source - I am in need of enlightenment ;) - thanks
[DllImport("iphlpapi.dll", EntryPoint="GetIpNetTable", SetLastError=true)]

public static extern int GetIpNetTable(IntPtr buffer,ref int Size, bool
Order);

I have got this far in the calling it- as below

IntPtr lpBuffer = IntPtr.Zero;

int size = 0;

int result = IPHelperAPI.GetIpNetTable(lpBuffer,ref size,true);

if(result != NO_ERROR)

{

Debug.WriteLine("NO ERROR");

lpBuffer = Marshal.AllocHGlobal(size);

result = IPHelperAPI.GetIpNetTable(lpBuffer,ref size,true);

if(result != NO_ERROR)

{

Marshal.FreeHGlobal(lpBuffer);

lpBuffer = IntPtr.Zero;

Debug.WriteLine("RETURN ERROR");

return;

}

Debug.WriteLine("I GOT THIS FAR");

// But canot allocate the structures from here - I hope someone out there
can pointer me in the right direction - good night all;;;

JJ

Nov 16 '05 #2

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:%2****************@TK2MSFTNGP11.phx.gbl...
James,

Here is how I would do it:

using System;
using System.Runtime.InteropServices;
using System.ComponentModel;

namespace ConsoleApplication5
{
class Program
{
// The max number of physical addresses.
const int MAXLEN_PHYSADDR = 8;

// Define the MIB_IPNETROW structure.
[StructLayout(LayoutKind.Sequential)]
struct MIB_IPNETROW
{
[MarshalAs(UnmanagedType.U4)]
public int dwIndex;
[MarshalAs(UnmanagedType.U4)]
public int dwPhysAddrLen;
[MarshalAs(UnmanagedType.ByValArray, SizeConst =
MAXLEN_PHYSADDR)]
byte[] bPhysAddr;
[MarshalAs(UnmanagedType.U4)]
public int dwAddr;
[MarshalAs(UnmanagedType.U4)]
public int dwType;
}

// Declare the GetIpNetTable function.
[DllImport("IpHlpApi.dll")]
[return: MarshalAs(UnmanagedType.U4)]
static extern int GetIpNetTable(
IntPtr pIpNetTable,
[MarshalAs(UnmanagedType.U4)]
ref int pdwSize,
bool bOrder);

// The insufficient buffer error.
const int ERROR_INSUFFICIENT_BUFFER = 122;

static void Main(string[] args)
{
// The number of bytes needed.
int bytesNeeded = 0;

// The result from the API call.
int result = GetIpNetTable(IntPtr.Zero, ref bytesNeeded,
false);

// Call the function, expecting an insufficient buffer.
if (result != ERROR_INSUFFICIENT_BUFFER)
{
// Throw an exception.
throw new Win32Exception(result);
}

// Allocate the memory, do it in a try/finally block, to ensure
// that it is released.
IntPtr buffer = IntPtr.Zero;

// Try/finally.
try
{
// Allocate the memory.
buffer = Marshal.AllocCoTaskMem(bytesNeeded);

// Make the call again. If it did not succeed, then
// raise an error.
result = GetIpNetTable(buffer, ref bytesNeeded, false);

// If the result is not 0 (no error), then throw an
exception.
if (result != 0)
{
// Throw an exception.
throw new Win32Exception(result);
}

// Now we have the buffer, we have to marshal it. We can
read
// the first 4 bytes to get the length of the buffer.
int entries = Marshal.ReadInt32(buffer);

// Increment the memory pointer by the size of the int.
IntPtr currentBuffer = new IntPtr(buffer.ToInt64() +
sizeof(int));

// Allocate an array of entries.
MIB_IPNETROW[] table = new MIB_IPNETROW[entries];

// Cycle through the entries.
for (int index = 0; index < entries; index++)
{
// Call PtrToStructure, getting the structure
information.
table[index] = (MIB_IPNETROW)
Marshal.PtrToStructure(new IntPtr(currentBuffer.ToInt64() + (index *
Marshal.SizeOf(typeof(MIB_IPNETROW)))), typeof(MIB_IPNETROW));
}
}
finally
{
// Release the memory.
Marshal.FreeCoTaskMem(buffer);
}
}
}
}

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"James Jenkins" <Ja***@REMOVETHIS1STtamarsolutions.co.uk> wrote in message
news:OW****************@TK2MSFTNGP12.phx.gbl...
does anyone know how to implement the following? - I am very new to using
Marshalling and could really do with some help - it's late and I am
tired - I have spent all day on this and the net comes up with very
little help - I have followed lots of tutorials and looked at many
peoples source - I am in need of enlightenment ;) - thanks
[DllImport("iphlpapi.dll", EntryPoint="GetIpNetTable",
SetLastError=true)]

public static extern int GetIpNetTable(IntPtr buffer,ref int Size, bool
Order);

I have got this far in the calling it- as below

IntPtr lpBuffer = IntPtr.Zero;

int size = 0;

int result = IPHelperAPI.GetIpNetTable(lpBuffer,ref size,true);

if(result != NO_ERROR)

{

Debug.WriteLine("NO ERROR");

lpBuffer = Marshal.AllocHGlobal(size);

result = IPHelperAPI.GetIpNetTable(lpBuffer,ref size,true);

if(result != NO_ERROR)

{

Marshal.FreeHGlobal(lpBuffer);

lpBuffer = IntPtr.Zero;

Debug.WriteLine("RETURN ERROR");

return;

}

Debug.WriteLine("I GOT THIS FAR");

// But canot allocate the structures from here - I hope someone out there
can pointer me in the right direction - good night all;;;

JJ


Excellent - I will take a close look at this code and hopefully learn from
it - As I have to implement many IP Helper functions - thanks again - any
more tips would be appreciated
Nov 16 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Gidraz | last post by:
Hello, i can't figure out how to retrieve clients MAC address using C#.NET. I can get IP but not MAC. Thanks in advance. Gidraz
2
by: FR3AK | last post by:
Hi. does anyone have any idea of how to find the mac address of a remote networking device? I've worked with WMI and it works fine as long as the target machine is a Windows computer, however,...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.