Announcement

Collapse
No announcement yet.

This takes 5 seconds using Windows 98 SE

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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

    #2
    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.
    Michael Mattias
    Tal Systems (retired)
    Port Washington WI USA
    [email protected]
    http://www.talsystems.com

    Comment


      #3
      Maybe a different kind of (personal) firewall / antivirus / anti-something on the two system?

      Bye!
      -- The universe tends toward maximum irony. Don't push it.

      File Extension Seeker - Metasearch engine for file extensions / file types
      Online TrID file identifier | TrIDLib - Identify thousands of file formats

      Comment


        #4
        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.
        Software makes Hardware Happen

        Comment


          #5
          Originally posted by Joe Byrne View Post
          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.
          Absolutely. Writing code so that SocketTools would behave consistently for both Windows 9x and Windows NT/2K/XP was a huge hassle. The day that Microsoft finally pulled the plug on Windows 98, I had a beer or three in celebration of its passing. And ripping that ugly compatibility code out of SocketTools 5.0 was a joyous event in of itself.
          Mike Stefanik
          sockettools.com

          Comment

          Working...
          X
          😀
          🥰
          🤢
          😎
          😡
          👍
          👎