pass opts to real write

git-svn-id: file:///home/svn/framework3/trunk@6066 4d416f70-5f16-0410-b530-b9f4589650da
unstable
kris 2009-01-04 07:31:31 +00:00
parent ac160be94e
commit 8546da23e4
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ module SocketTracer
def write(buf, opts = {})
@fd.puts "WRITE (#{buf.length} bytes)"
@fd.puts Rex::Text.to_hex_dump(buf)
super(buf)
super(buf, opts)
end
# Hook the read method
@ -104,4 +104,4 @@ module SocketTracer
end
end
end
end