We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed32f9a commit b6dff88Copy full SHA for b6dff88
lib/cassandra/socket.lua
@@ -14,6 +14,8 @@ do
14
local function flatten(v, buf)
15
if type(v) == 'string' then
16
buf[#buf+1] = v
17
+ elseif type(v) == 'number' then
18
+ buf[#buf+1] = tostring(v)
19
elseif type(v) == 'table' then
20
for i = 1, #v do
21
flatten(v[i], buf)
@@ -61,7 +63,7 @@ do
61
63
certificate = opts.cert,
62
64
cafile = opts.cafile,
65
verify = verify and 'peer' or 'none',
- options = 'all'
66
+ options = { 'all', 'no_sslv2', 'no_sslv3', 'no_tlsv1' }
67
}
68
69
local sock, err = ssl.wrap(self.sock, params)
0 commit comments