Click to See Complete Forum and Search --> : Internet connection
mileta
April 5th, 1999, 08:25 AM
Hi all,
Does anybody can tell me how I can decide wherher internet connection is making with phone line (via modem) or with local area network.
Regards,
Mileta.
April 23rd, 1999, 10:42 PM
Hi. Just a thought, but I believe there is a way to get access to the header information on each ip packet. If you obtained the MAC address from that header (it would be there) you might then be able to determine which device the packet was destined to use...(each device has a unique MAC address.) I have never done it myself or even tried, so take this suggestion with a grain of salt.
Good Luck
vijaymittal
April 26th, 2001, 03:31 PM
HI Mileta
could you please help how to check internet connection in java. or which ever language you have used. Either send me code or logic so that i can write .
Hoping for a prompt reply
Thanks
vijay
vijay_mittal@yahoo.com
Brandon Parker
April 26th, 2001, 05:54 PM
DWORD flags = INTERNET_CONNECTION_LAN
if(InternetGetConnectedState(&flags,0) )
//Lan connection
flags = INTERNET_CONNECTION_MODEM;
if(InternetGetConnectedStat(&flags,0);
//Modem connection
codeguru.com
Copyright Internet.com Inc., All Rights Reserved.