(self, raw: str, ssl: bool = False, proxy=None, location=True)
| 484 | self.queue.put({"func": func, "url": url, "kw": kwargs}) |
| 485 | |
| 486 | def httpraw(self, raw: str, ssl: bool = False, proxy=None, location=True): |
| 487 | func = self.hack.httpraw |
| 488 | self.queue.put({"func": func, "raw": raw, "ssl": ssl, |
| 489 | "proxy": proxy, "location": location}) |
| 490 | |
| 491 | def scan(self): |
| 492 | while 1: |
no outgoing calls