aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/connections.py
Commit message (Collapse)AuthorAgeFilesLines
* don't crash if server address is unknown, fix #2969Maximilian Hils2018-03-231-11/+8
|
* add missing client_certs directory expansionMaximilian Hils2018-02-271-0/+1
|
* use sni to select clientcertsMaximilian Hils2018-02-251-1/+2
|
* use TLS options also for request replay, refs #2840Maximilian Hils2018-02-081-9/+9
|
* store ClientHello extensions with client connectionMaximilian Hils2018-01-131-1/+16
|
* avoid TLS/SSL ambiguity for Cert classThomas Kriechbaumer2018-01-071-3/+3
|
* rename TLS/SSL-related functionsThomas Kriechbaumer2018-01-061-4/+4
| | | | | | SSL is an outdated protocol superseeded by TLS. Although the commonly used library is called OpenSSL, it is no reason to still use outdated language for function names.
* rename TLS/SSL-related attributesThomas Kriechbaumer2018-01-061-36/+20
| | | | | | SSL is an outdated protocol superseeded by TLS. Although the commonly used library is called OpenSSL, it is no reason to still use outdated language for attributes.
* stateobject: automatically change id when copyingMaximilian Hils2017-03-141-10/+0
|
* add connection idsMaximilian Hils2017-03-141-0/+33
|
* connections: coverage++ (#2064)Thomas Kriechbaumer2017-02-261-11/+30
|
* nuke tcp.Address and add proper IPv6 supportThomas Kriechbaumer2017-02-241-9/+11
|
* minor adjustmentsMaximilian Hils2017-02-211-2/+3
|
* store generated cert for each flowDaniel Lenski2017-02-211-0/+4
| | | | fixes #1935
* simplify state copyMaximilian Hils2017-02-091-7/+0
|
* always decode alpn where requiredMaximilian Hils2016-12-201-4/+17
|
* display ALPN informationThomas Kriechbaumer2016-12-171-2/+14
|
* Remove unused protocol attribute on connections.Aldo Cortesi2016-11-121-2/+0
|
* Let's not over-ride __bool__ on connection objectsAldo Cortesi2016-11-041-2/+2
| | | | | If I had a thousand years and every thesaurus in the world, I still couldn't adequately express how much I dislike this piece of interface design.
* fix #1675Maximilian Hils2016-10-271-1/+5
|
* Show tls version on consolechhsiao902016-10-261-0/+5
|
* Resolved #582: display ClientConnection select cipher of TLSchhsiao902016-10-261-1/+6
|
* Resolved #1639: display sni on ClientConnectionchhsiao902016-10-251-1/+6
|
* The final piece: netlib -> mitproxy.netAldo Cortesi2016-10-201-1/+1
|
* netlib.certutils -> mitmproxy.certsAldo Cortesi2016-10-201-3/+3
|
* Move all tools into mitmproxy.tools, move models/* to top levelAldo Cortesi2016-10-191-0/+221
The primary motivation here (and for all the other moving around) is to present a clean "front of house" to library users, and to migrate primary objects to the top of the module hierarchy.