Class: Net::NTLM::Int16LE

Inherits:
Field
  • Object
show all
Defined in:
lib/net/ntlm.rb,
lib/net/ntlm_http.rb

Instance Attribute Summary

Attributes inherited from Field

#active, #value

Instance Method Summary collapse

Methods inherited from Field

#size

Constructor Details

#initialize(opt) ⇒ Int16LE

Returns a new instance of Int16LE.



300
301
302
303
# File 'lib/net/ntlm.rb', line 300

def initialize(opt)
  super(opt)
  @size = 2
end

Instance Method Details

#parse(str, offset = 0) ⇒ Object



304
305
306
307
308
309
310
311
# File 'lib/net/ntlm.rb', line 304

def parse(str, offset=0)
  if @active and str.size >= offset + @size
    @value = str[offset, @size].unpack("v")[0]
    @size
  else
    0
  end
end

#serializeObject



313
314
315
# File 'lib/net/ntlm.rb', line 313

def serialize
  [@value].pack("v")
end