From 5f2c062fb56460ddfba7072cafaca29b565012b3 Mon Sep 17 00:00:00 2001 From: Thomas Jager Date: Wed, 7 Nov 2012 21:57:10 +0100 Subject: [PATCH] Update readme with TLS --- README.markdown | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 2ff97c5..e48fcdd 100644 --- a/README.markdown +++ b/README.markdown @@ -47,8 +47,12 @@ AddCallback Example Commands -------- - irc.IRC("", "") //Create new ircobj + ircobj := irc.IRC("", "") //Create new ircobj + //Set options + ircobj.UseTLS = true //default is false + //ircobj.TLSOptions //set ssl options ircobj.Password = "[server password]" + //Commands ircobj.Connect("irc.someserver.com:6667") //Connect to server ircobj.Sendraw("") //sends string to server. Adds \r\n ircobj.Sendraw("", ...) //sends formatted string to server.n