mirror of
https://github.com/irssi/irssi.git
synced 2026-08-23 10:32:31 +02:00
Add pinned TLS fingerprint support.
This patch adds support for pinning TLS fingerprints. Setting a pinned fingerprint will override all other TLS verification and will thus be the only variable that will be looked at when connecting to a TLS enabled IRC server.
This commit is contained in:
parent
fb78787d4e
commit
78f007d493
31 changed files with 1114 additions and 357 deletions
|
|
@ -301,7 +301,8 @@ void perl_connect_fill_hash(HV *hv, SERVER_CONNECT_REC *conn)
|
|||
(void) hv_store(hv, "no_autojoin_channels", 20, newSViv(conn->no_autojoin_channels), 0);
|
||||
(void) hv_store(hv, "no_autosendcmd", 14, newSViv(conn->no_autosendcmd), 0);
|
||||
(void) hv_store(hv, "unix_socket", 11, newSViv(conn->unix_socket), 0);
|
||||
(void) hv_store(hv, "use_ssl", 7, newSViv(conn->use_ssl), 0);
|
||||
(void) hv_store(hv, "use_ssl", 7, newSViv(conn->use_tls), 0);
|
||||
(void) hv_store(hv, "use_tls", 7, newSViv(conn->use_tls), 0);
|
||||
(void) hv_store(hv, "no_connect", 10, newSViv(conn->no_connect), 0);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue