shutdown client socket for apps which fork in background
[unicorn.git] / lib / unicorn / ssl_client.rb
bloba8c79e3333e013264f1e4c2f35b5f7850184199b
1 # -*- encoding: binary -*-
2 # :stopdoc:
3 class Unicorn::SSLClient < Kgio::SSL
4   alias write kgio_write
5   alias close kgio_close
7   # this is no-op for now, to be fixed in kgio-monkey if people care
8   # about SSL support...
9   def shutdown(how = nil)
10   end
11 end