Skip to content

Client (API)

Nate the great edited this page Feb 22, 2018 · 3 revisions

attributes

  • buffer_size | int | Whatever was passed into buffer_size (see below)
  • ip | str | Whatever was passed into ip (see below)
  • port | int | Whatever was passed into port (see below)
  • running | bool | Set to False when created, Set to True when you call run, and when False, it stops the run method
  • tasks | queue.Queue | Not used anymore
  • ip | str | IP is the addr of the target computer, in which QServer is running on.
  • port | int | The port, that the target QServer is running on.
  • buffer_size | int | How many bytes of data it can read and send at a time.
  • family & type | int | The type of socket used for communication see the socket lib for details.
  • timeout | number | How long the socket will wait for more information (in seconds).

This is the same as quicknet.server.QServer.error_handler

Clone this wiki locally