class Rex::Post::Meterpreter::Extensions::Stdapi::Railgun::DLLWrapper

Attributes

_client[R]
_dll[R]

Public Class Methods

new(dll, client) click to toggle source
# File lib/rex/post/meterpreter/extensions/stdapi/railgun/dll_wrapper.rb, line 10
def initialize(dll, client)
  @_dll    = dll
  @_client = client
end

Public Instance Methods

functions() click to toggle source

For backwards compatability. People check if functions are added this way XXX: Depricate this

# File lib/rex/post/meterpreter/extensions/stdapi/railgun/dll_wrapper.rb, line 17
def functions
  # warn 'Depricated.'
  _dll.functions
end
method_missing(sym, *args) click to toggle source
# File lib/rex/post/meterpreter/extensions/stdapi/railgun/dll_wrapper.rb, line 22
def method_missing(sym, *args)
  _dll.call_function(sym, args, _client)
end