2015-01-03 00:06:59 +00:00
|
|
|
# -*- coding: binary -*-
|
|
|
|
#
|
|
|
|
# Support for the protocol used by Apple Airport products, typically on
|
|
|
|
# 5009/TCP. This protocol is not documented and doesn't appear to have a name,
|
|
|
|
# so I'm calling it ACPP because that is the protocol header.
|
|
|
|
#
|
|
|
|
|
2015-01-05 23:06:46 +00:00
|
|
|
require 'rex/proto/acpp/client'
|
2015-01-03 00:06:59 +00:00
|
|
|
require 'rex/proto/acpp/message'
|
2015-01-13 03:43:57 +00:00
|
|
|
|
|
|
|
module Rex
|
|
|
|
module Proto
|
|
|
|
module ACPP
|
|
|
|
DEFAULT_PORT = 5009
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|