module Proxy::Omaha::OmahaProtocol

Constants

COREOS_APPID
EVENT_RESULTS
EVENT_TYPES

Public Class Methods

event_description(id) click to toggle source
# File lib/smart_proxy_omaha/omaha_protocol.rb, line 58
def self.event_description(id)
  id = 0 unless EVENT_TYPES.key?(id)
  EVENT_TYPES[id]
end
event_result(id) click to toggle source
# File lib/smart_proxy_omaha/omaha_protocol.rb, line 63
def self.event_result(id)
  id = 0 unless EVENT_RESULTS.key?(id)
  EVENT_RESULTS[id]
end