Files
metasploit-gs/lib/rex/proto/mqtt.rb
T
2017-12-20 12:28:02 -08:00

15 lines
196 B
Ruby

# -*- coding: binary -*-
#
# Support for MQTT
require 'rex/proto/mqtt/client'
module Rex
module Proto
module MQTT
DEFAULT_PORT = 1883
DEFAULT_SSL_PORT = 8883
end
end
end