Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Public Member Functions | |
def | __init__ |
def | makefile |
def | send |
def | sendall |
def | recv |
def | __getattr__ |
Definition at line 608 of file httplib.py.
def __init__ | ( | self, | |
sock, | |||
ssl | |||
) |
Definition at line 609 of file httplib.py.
References FakeSocket.__sock, and FakeSocket.__ssl.
def __getattr__ | ( | self, | |
attr | |||
) |
Definition at line 655 of file httplib.py.
def makefile | ( | self, | |
mode, | |||
bufsize = None |
|||
) |
Return a readable file-like object with data from socket. This method offers only partial support for the makefile interface of a real socket. It only supports modes 'r' and 'rb' and the bufsize argument is ignored. The returned object contains *all* of the file data
Definition at line 613 of file httplib.py.
def recv | ( | self, | |
len = 1024 , |
|||
flags = 0 |
|||
) |
Definition at line 652 of file httplib.py.
def send | ( | self, | |
stuff, | |||
flags = 0 |
|||
) |
Definition at line 646 of file httplib.py.
def sendall | ( | self, | |
stuff, | |||
flags = 0 |
|||
) |
Definition at line 649 of file httplib.py.