(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/mac/node41.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/mac/module-mactcp.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/mac/node43.html| ]]
|
Macintosh Library Modules
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/mac/contents.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/mac/modindex.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/mac/genindex.html| ]]
|
Previous: 2.10.1 TCP Stream Objects Up: 2.10 mactcp Next: 2.10.3 UDP Stream Objects
2.10.2 TCP Status Objects
This object has no methods, only some members holding information on the connection. A complete description of all fields in this objects can be found in the Apple documentation. The most interesting ones are:
- localHost
- localPort
- remoteHost
- remotePort
- The integer IP-addresses and port numbers of both endpoints of the connection.
- sendWindow
- The current window size.
- amtUnackedData
- The number of bytes sent but not yet acknowledged.
sendWindow - amtUnackedData is what you can pass to Send() without blocking.
- amtUnreadData
- The number of bytes received but not yet read (what you can Recv() without blocking).
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/mac/node41.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/mac/module-mactcp.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/mac/node43.html| ]]
|
Macintosh Library Modules
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/mac/contents.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/mac/modindex.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/mac/genindex.html| ]]
|
Previous: 2.10.1 TCP Stream Objects Up: 2.10 mactcp Next: 2.10.3 UDP Stream Objects
See About this document... for information on suggesting changes.