12-13-2007 06:49 AM
12-13-2007 07:05 AM
LabVIEW does not have built-in functions for this. The TCP and UDP primitives both allow LabVIEW to work only in the application layer.
You might be able to call some external code to do this, e.g. calling WinPcap.
Another Yair N.
12-14-2007 04:33 AM
WinPcap is for intercepting network traffic. No need to use that. Instead you should try to look into the Winsock API in wsock32.dll. It is mostly a BSD socket implementation with some Microsoft specific additions, but those are not really that important anymore for Win 32 bit. MSDN has all the required information how to call this API. However it is not exactly LabVIEW friendly in some parts so a wrapper DLL might be at its place.
tst wrote:
LabVIEW does not have built-in functions for this. The TCP and UDP primitives both allow LabVIEW to work only in the application layer.
You might be able to call some external code to do this, e.g. calling WinPcap.
Another Yair N.
12-17-2007 12:25 PM - edited 12-17-2007 12:27 PM