Changeset 0a16644 in mod_gnutls
- Timestamp:
- Dec 2, 2019, 2:57:33 PM (3 years ago)
- Branches:
- asyncio, main, master, proxy-ticket
- Children:
- eed0c4b
- Parents:
- db82911
- git-author:
- Fiona Klute <fiona.klute@…> (12/02/19 14:56:09)
- git-committer:
- Fiona Klute <fiona.klute@…> (12/02/19 14:57:33)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/https-test-client.py
rdb82911 r0a16644 219 219 poller.register(fd) 220 220 221 init_done = False 221 222 run_loop = True 222 223 while run_loop: … … 228 229 if event & select.POLLIN or event & select.POLLPRI: 229 230 data = in_stream.read() 230 if cert_log in data: 231 data = data.replace(cert_log, b'') 231 if not init_done: 232 # If the erroneous log line shows up it's the 233 # first piece of data we receive. Just copy 234 # everything after. 235 init_done = True 236 if cert_log in data: 237 data = data.replace(cert_log, b'') 232 238 out_stream.send(data) 233 239 if event & select.POLLHUP or event & select.POLLRDHUP:
Note: See TracChangeset
for help on using the changeset viewer.