Ignore:
Timestamp:
2006-09-24T11:57:45Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
e101506
Parents:
172a73f1
Message:

Added support for SSL- and TLS-connections. Checking of the "tls" user
setting has to be finished, plus an ssl_starttls() function for the other
SSL libraries (this code will only compile with GnuTLS for now).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/jabber.c

    r172a73f1 r42127dc  
    8080        if( set_getbool( &acc->set, "ssl" ) )
    8181        {
    82                 signoff( gc );
    83                 /* TODO! */
     82                jd->ssl = ssl_connect( jd->server, set_getint( &acc->set, "port" ), jabber_connected_ssl, gc );
     83                jd->fd = ssl_getfd( jd->ssl );
    8484        }
    8585        else
Note: See TracChangeset for help on using the changeset viewer.