Class: EventNotifyServlet

Inherits:
WEBrick::HTTPServlet::AbstractServlet
  • Object
show all
Defined in:
lib/upnp_control_point.rb

Instance Method Summary collapse

Instance Method Details

#do_NOTIFY(req, res) ⇒ Object



37
38
39
40
41
42
43
# File 'lib/upnp_control_point.rb', line 37

def do_NOTIFY(req, res)
  cp = @options[0]
  if req.path == '/event'
    cp.on_event_notify req['SID'], req.body
  end
  res.status = 200
end