qmsk/net/socket/__init__.py
changeset 26 d8a71a675862
parent 24 f18b5787c46c
child 27 12468e38227e
equal deleted inserted replaced
25:e60de189099d 26:d8a71a675862
     1 """
     1 """
     2     The low-level OS Socket API and related functionality, covering the Internet layer.
     2     The low-level OS Socket API and related functionality, covering the Network layer. This includes network addresses
       
     3     and hostname resolving.
     3 
     4 
     4     All functionality provided here aims to be a thin wrapper around the native system API, so for the most part, methods
     5     All functionality provided here aims to be a thin wrapper around the native system API, so for the most part, methods
     5     map directly to *one* syscall/libc call.
     6     map directly to *one* syscall/libc call.
     6 
     7 
     7     Provided modules/types:
     8     Provided modules/types: