module GetbyteForSSLSocket

Public Instance Methods

getbyte() click to toggle source
# File lib/rom/ldap/socket.rb, line 7
def getbyte
  byte = getc
  return nil if byte.nil?

  byte.ord
end