class HTTPClient::WebAgentSaver

def self.flag(cookie)

def self.flag(cookie)
  flg = 0
  flg += USE # not used
  flg += SECURE  if cookie.secure?
  flg += DOMAIN  if cookie.for_domain?
  flg += HTTP_ONLY  if cookie.httponly?
  flg += PATH  if cookie.path # not used
  flg
end