1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-29 19:09:01 +00:00

New tableaux library containing table auxiliary functions.

This commit is contained in:
dmiller
2018-10-17 15:34:30 +00:00
parent c76424deb7
commit dcc0e3ed7e
43 changed files with 203 additions and 238 deletions

View File

@@ -32,6 +32,7 @@ local smtp = require "smtp"
local stdnse = require "stdnse"
local string = require "string"
local table = require "table"
local tableaux = require "tableaux"
local tls = require "tls"
local vnc = require "vnc"
local xmpp = require "xmpp"
@@ -637,7 +638,7 @@ StartTLS = {
}
local best
for i=1, #auth_order do
if stdnse.contains(v.vencrypt.types, auth_order[i]) then
if tableaux.contains(v.vencrypt.types, auth_order[i]) then
best = auth_order[i]
break
end