metasploit-framework/lib/rex/proto/mqtt.rb

14 lines
164 B
Ruby

# -*- coding: binary -*-
#
# Support for MQTT
module Rex
module Proto
module MQTT
DEFAULT_PORT = 1883
DEFAULT_SSL_PORT = 8883
end
end
end