# File lib/typhoeus/easy.rb, line 329
    def set_option(option, value)
      case value
        when String
          easy_setopt_string(option, value)
        when Typhoeus::Form
          easy_setopt_form(option, value)
        else
          easy_setopt_long(option, value) if value
      end
    end