diff options
Diffstat (limited to 'sp/src/public/steam/steamhttpenums.h')
| -rw-r--r-- | sp/src/public/steam/steamhttpenums.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sp/src/public/steam/steamhttpenums.h b/sp/src/public/steam/steamhttpenums.h index c75b59cd..9ac2eeaf 100644 --- a/sp/src/public/steam/steamhttpenums.h +++ b/sp/src/public/steam/steamhttpenums.h @@ -1,4 +1,4 @@ -//========= Copyright Valve Corporation, All rights reserved. ============// +//====== Copyright � 1996-2010, Valve Corporation, All rights reserved. ======= // // Purpose: HTTP related enums, stuff that is shared by both clients and servers, and our // UI projects goes here. @@ -20,13 +20,13 @@ enum EHTTPMethod 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_EHTTPMethodOPTIONS, - k_EHTTPMethodPUT, - k_EHTTPMethodDELETE, // k_EHTTPMethodTRACE, // k_EHTTPMethodCONNECT }; |