Method: Rex::Post::Meterpreter::Extensions::Stdapi::Railgun::Type::PointerUtil.is_pointer_type?
- Defined in:
- lib/rex/post/meterpreter/extensions/stdapi/railgun/type/pointer_util.rb
.is_pointer_type?(type) ⇒ Boolean
Returns true if the data type is a pointer, false otherwise
87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/rex/post/meterpreter/extensions/stdapi/railgun/type/pointer_util.rb', line 87 def self.is_pointer_type?(type) if type == :pointer return true end if type.kind_of?(String) && type =~ /^L?P/ return true end return false end |