| Index: net/http/mock_gssapi_library_posix.h
|
| diff --git a/net/http/mock_gssapi_library_posix.h b/net/http/mock_gssapi_library_posix.h
|
| index d35f7f5fcdb3dd3db3fa43677b6662bee4ef9365..eee8f0a31e99895c497e83ed9f887d6b065b56bc 100644
|
| --- a/net/http/mock_gssapi_library_posix.h
|
| +++ b/net/http/mock_gssapi_library_posix.h
|
| @@ -123,29 +123,24 @@ class MockGSSAPILibrary : public GSSAPILibrary {
|
| virtual bool Init() OVERRIDE;
|
|
|
| // These methods match the ones in the GSSAPI library.
|
| - virtual OM_uint32 import_name(
|
| - OM_uint32* minor_status,
|
| - const gss_buffer_t input_name_buffer,
|
| - const gss_OID input_name_type,
|
| - gss_name_t* output_name) OVERRIDE;
|
| - virtual OM_uint32 release_name(
|
| - OM_uint32* minor_status,
|
| - gss_name_t* input_name) OVERRIDE;
|
| - virtual OM_uint32 release_buffer(
|
| - OM_uint32* minor_status,
|
| - gss_buffer_t buffer) OVERRIDE;
|
| - virtual OM_uint32 display_name(
|
| - OM_uint32* minor_status,
|
| - const gss_name_t input_name,
|
| - gss_buffer_t output_name_buffer,
|
| - gss_OID* output_name_type) OVERRIDE;
|
| - virtual OM_uint32 display_status(
|
| - OM_uint32* minor_status,
|
| - OM_uint32 status_value,
|
| - int status_type,
|
| - const gss_OID mech_type,
|
| - OM_uint32* message_contex,
|
| - gss_buffer_t status_string) OVERRIDE;
|
| + virtual OM_uint32 import_name(OM_uint32* minor_status,
|
| + const gss_buffer_t input_name_buffer,
|
| + const gss_OID input_name_type,
|
| + gss_name_t* output_name) OVERRIDE;
|
| + virtual OM_uint32 release_name(OM_uint32* minor_status,
|
| + gss_name_t* input_name) OVERRIDE;
|
| + virtual OM_uint32 release_buffer(OM_uint32* minor_status,
|
| + gss_buffer_t buffer) OVERRIDE;
|
| + virtual OM_uint32 display_name(OM_uint32* minor_status,
|
| + const gss_name_t input_name,
|
| + gss_buffer_t output_name_buffer,
|
| + gss_OID* output_name_type) OVERRIDE;
|
| + virtual OM_uint32 display_status(OM_uint32* minor_status,
|
| + OM_uint32 status_value,
|
| + int status_type,
|
| + const gss_OID mech_type,
|
| + OM_uint32* message_contex,
|
| + gss_buffer_t status_string) OVERRIDE;
|
| virtual OM_uint32 init_sec_context(
|
| OM_uint32* minor_status,
|
| const gss_cred_id_t initiator_cred_handle,
|
| @@ -160,27 +155,24 @@ class MockGSSAPILibrary : public GSSAPILibrary {
|
| gss_buffer_t output_token,
|
| OM_uint32* ret_flags,
|
| OM_uint32* time_rec) OVERRIDE;
|
| - virtual OM_uint32 wrap_size_limit(
|
| - OM_uint32* minor_status,
|
| - const gss_ctx_id_t context_handle,
|
| - int conf_req_flag,
|
| - gss_qop_t qop_req,
|
| - OM_uint32 req_output_size,
|
| - OM_uint32* max_input_size) OVERRIDE;
|
| - virtual OM_uint32 delete_sec_context(
|
| - OM_uint32* minor_status,
|
| - gss_ctx_id_t* context_handle,
|
| - gss_buffer_t output_token) OVERRIDE;
|
| - virtual OM_uint32 inquire_context(
|
| - OM_uint32* minor_status,
|
| - const gss_ctx_id_t context_handle,
|
| - gss_name_t* src_name,
|
| - gss_name_t* targ_name,
|
| - OM_uint32* lifetime_rec,
|
| - gss_OID* mech_type,
|
| - OM_uint32* ctx_flags,
|
| - int* locally_initiated,
|
| - int* open) OVERRIDE;
|
| + virtual OM_uint32 wrap_size_limit(OM_uint32* minor_status,
|
| + const gss_ctx_id_t context_handle,
|
| + int conf_req_flag,
|
| + gss_qop_t qop_req,
|
| + OM_uint32 req_output_size,
|
| + OM_uint32* max_input_size) OVERRIDE;
|
| + virtual OM_uint32 delete_sec_context(OM_uint32* minor_status,
|
| + gss_ctx_id_t* context_handle,
|
| + gss_buffer_t output_token) OVERRIDE;
|
| + virtual OM_uint32 inquire_context(OM_uint32* minor_status,
|
| + const gss_ctx_id_t context_handle,
|
| + gss_name_t* src_name,
|
| + gss_name_t* targ_name,
|
| + OM_uint32* lifetime_rec,
|
| + gss_OID* mech_type,
|
| + OM_uint32* ctx_flags,
|
| + int* locally_initiated,
|
| + int* open) OVERRIDE;
|
|
|
| private:
|
| FRIEND_TEST_ALL_PREFIXES(HttpAuthGSSAPIPOSIXTest, GSSAPICycle);
|
| @@ -196,4 +188,3 @@ class MockGSSAPILibrary : public GSSAPILibrary {
|
| } // namespace net
|
|
|
| #endif // NET_HTTP_MOCK_GSSAPI_LIBRARY_POSIX_H_
|
| -
|
|
|