Sha256: e90da4eef275a742739c93d77791e1c0a2d176132521ce5692af2fea1a5b9c84
Contents?: true
Size: 524 Bytes
Versions: 15
Compression:
Stored size: 524 Bytes
Contents
# -*- coding: binary -*- module Rex module Post module Meterpreter module Extensions module Stdapi module Railgun class DLLWrapper attr_reader :_client, :_dll def initialize(dll, client) @_dll = dll @_client = client end # For backwards compatability. People check if functions are added this way # XXX: Depricate this def functions # warn 'Depricated.' _dll.functions end def method_missing(sym, *args) _dll.call_function(sym, args, _client) end end end; end; end; end; end; end
Version data entries
15 entries across 15 versions & 3 rubygems