func_network_socketconnected.rst 571 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .. _func_network_socketconnected:
  2. ===============
  3. SocketConnected
  4. ===============
  5. SocketConnected -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. SocketConnected( socket:TSocket )
  10. Get socket connection status
  11. #SocketConnected allows you to determine if a TCP connection is still
  12. alive or has been remotely closed.
  13. #SocketConnected should only be used with TCP sockets that have already
  14. connected via #ConnectSocket or #SocketAccept.
  15. Parameters
  16. ==========
  17. Return Values
  18. =============
  19. True if socket is connected
  20. Examples
  21. ========
  22. See Also
  23. ========