Originally posted by Joe Byrne
View Post
Announcement
Collapse
No announcement yet.
This takes 5 seconds using Windows 98 SE
Collapse
X
-
-
-
Or the fact that the IP stack was an add-on in Win9.x and not 100% standard. There are lots of quirks with TCP on the Win9.x platform.
Leave a comment:
-
-
Maybe a different kind of (personal) firewall / antivirus / anti-something on the two system?
Bye!
Leave a comment:
-
-
Five seconds would be the average of how many runs under what load conditions (computer) and what level of network trafffic using how many different internet connection methods with what settings for networks?
Sometimes it just takes five seconds, ya know?
Or I could cop out and tell you you are lucky you connected at all when using an unsupported operating system.
Leave a comment:
-
-
This takes 5 seconds using Windows 98 SE
Why would the TCP OPEN take 5 seconds using Windows 98 SE?
Immediate using XP. Changed port number and host for security reasons.
Code:'snoop.bas #COMPILE EXE #DIM ALL FUNCTION PBMAIN () AS LONG 'Send information to your running monitor or just write to a page on your server LOCAL nsocket AS LONG, PortNumber AS LONG, TheServer AS STRING ,sLine AS STRING PortNumber = 999 TheServer = "99.99.99.99" 'Method 2: Send to a server program running on your desktop nsocket = FREEFILE TCP OPEN PORT PortNumber AT TheServer AS nSocket 'TIMEOUT 250 IF ERR = 0 THEN sLine = "TEST" TCP SEND nSocket, sLine TCP CLOSE nSocket ELSE ? "Unable to connect to " + TheServer+ " on port" + STR$(PortNumber) END IF END FUNCTION
Tags: None
-
Leave a comment: