View Single Post
Deathknife
Senior Member
Join Date: Aug 2014
Old 01-14-2017 , 13:27   Re: [ANY] SteamWorks
Reply With Quote #497

Am I right by assuming HTTP methods are out of your control? (i.e adding new ones)
PHP Code:
enum EHTTPMethod
{
    
k_EHTTPMethodInvalid 0,
    
k_EHTTPMethodGET,
    
k_EHTTPMethodHEAD,
    
k_EHTTPMethodPOST,
    
k_EHTTPMethodPUT,
    
k_EHTTPMethodDELETE,
    
k_EHTTPMethodOPTIONS,

    
// The remaining HTTP methods are not yet supported, per rfc2616 section 5.1.1 only GET and HEAD are required for 
    // a compliant general purpose server.  We'll likely add more as we find uses for them.

    // k_EHTTPMethodTRACE,
    // k_EHTTPMethodCONNECT
}; 
__________________
Deathknife is offline