Not connecting over SSL/TLS #7

Open
opened 2023-08-05 12:45:14 -04:00 by emil · 2 comments
Owner
No description provided.
Collaborator

Is it connecting via plain HTTP?

Is it connecting via plain HTTP?
Collaborator

Looks like we have to build libircclient with SSL support:
http://www.ulduzsoft.com/libircclient/

./configure [--enable-openssl] [--enable-ipv6]
make

"To initiate the connection to the IRC server over SSL, call the irc_connect() function and prefix the host name or IP address with a hash symbol:

// Connect to the SSL server; #192.168.1.1 is also possible
if ( irc_connect (session, "#irc.example.com", 6669, 0, "mynick", "myusername", "myrealname" ) )
// Handle the error: irc_strerror() and irc_errno()

"

Looks like we have to build libircclient with SSL support: http://www.ulduzsoft.com/libircclient/ ./configure [--enable-openssl] [--enable-ipv6] make "To initiate the connection to the IRC server over SSL, call the irc_connect() function and prefix the host name or IP address with a hash symbol: // Connect to the SSL server; #192.168.1.1 is also possible if ( irc_connect (session, "#irc.example.com", 6669, 0, "mynick", "myusername", "myrealname" ) ) // Handle the error: irc_strerror() and irc_errno() "
This repo is archived. You cannot comment on issues.
No Label
No Milestone
No Assignees
2 Participants
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: emil/probotic#7
No description provided.