(x)
| 39 | # we print final results from the cache |
| 40 | |
| 41 | def get_cache(x): |
| 42 | if x['hl'] in [ 'http', 'http2']: |
| 43 | return http_cache |
| 44 | elif x['hl'] == 'quic': |
| 45 | return quic_cache |
| 46 | else: |
| 47 | return conn_cache |
| 48 | |
| 49 | def clean_cache(x): |
| 50 | cache = get_cache(x) |
no outgoing calls
no test coverage detected