@@ -404,7 +404,7 @@ GSS_DLLIMP OM_uint32 gss_acquire_cred(
404
404
OM_uint32 * , /* minor_status */
405
405
gss_const_name_t , /* desired_name */
406
406
OM_uint32 , /* time_req */
407
- const gss_OID_set , /* desired_mechs */
407
+ gss_const_OID_set , /* desired_mechs */
408
408
gss_cred_usage_t , /* cred_usage */
409
409
gss_cred_id_t * , /* output_cred_handle */
410
410
gss_OID_set * , /* actual_mechs */
@@ -421,11 +421,11 @@ GSS_DLLIMP OM_uint32 gss_init_sec_context(
421
421
gss_const_cred_id_t , /* claimant_cred_handle */
422
422
gss_ctx_id_t * , /* context_handle */
423
423
gss_const_name_t , /* target_name */
424
- const gss_OID , /* mech_type */
424
+ gss_const_OID , /* mech_type */
425
425
OM_uint32 , /* req_flags */
426
426
OM_uint32 , /* time_req */
427
- const gss_channel_bindings_t , /* input_chan_bindings */
428
- const gss_buffer_t , /* input_token */
427
+ gss_const_channel_bindings_t , /* input_chan_bindings */
428
+ gss_const_buffer_t , /* input_token */
429
429
gss_OID * , /* actual_mech_type */
430
430
gss_buffer_t , /* output_token */
431
431
OM_uint32 * , /* ret_flags */
@@ -436,8 +436,8 @@ GSS_DLLIMP OM_uint32 gss_accept_sec_context(
436
436
OM_uint32 * , /* minor_status */
437
437
gss_ctx_id_t * , /* context_handle */
438
438
gss_const_cred_id_t , /* acceptor_cred_handle */
439
- const gss_buffer_t , /* input_token_buffer */
440
- const gss_channel_bindings_t , /* input_chan_bindings */
439
+ gss_const_buffer_t , /* input_token_buffer */
440
+ gss_const_channel_bindings_t , /* input_chan_bindings */
441
441
gss_name_t * , /* src_name */
442
442
gss_OID * , /* mech_type */
443
443
gss_buffer_t , /* output_token */
@@ -449,7 +449,7 @@ GSS_DLLIMP OM_uint32 gss_accept_sec_context(
449
449
GSS_DLLIMP OM_uint32 gss_process_context_token (
450
450
OM_uint32 * , /* minor_status */
451
451
gss_const_ctx_id_t , /* context_handle */
452
- const gss_buffer_t /* token_buffer */
452
+ gss_const_buffer_t /* token_buffer */
453
453
);
454
454
455
455
GSS_DLLIMP OM_uint32 gss_delete_sec_context (
@@ -469,16 +469,16 @@ GSS_DLLIMP OM_uint32 gss_get_mic(
469
469
OM_uint32 * , /* minor_status */
470
470
gss_const_ctx_id_t , /* context_handle */
471
471
gss_qop_t , /* qop_req */
472
- const gss_buffer_t , /* message_buffer */
472
+ gss_const_buffer_t , /* message_buffer */
473
473
gss_buffer_t /* message_token */
474
474
);
475
475
476
476
/* New for V2 */
477
477
GSS_DLLIMP OM_uint32 gss_verify_mic (
478
478
OM_uint32 * , /* minor_status */
479
479
gss_const_ctx_id_t , /* context_handle */
480
- const gss_buffer_t , /* message_buffer */
481
- const gss_buffer_t , /* message_token */
480
+ gss_const_buffer_t , /* message_buffer */
481
+ gss_const_buffer_t , /* message_token */
482
482
gss_qop_t * /* qop_state */
483
483
);
484
484
@@ -488,7 +488,7 @@ GSS_DLLIMP OM_uint32 gss_wrap(
488
488
gss_const_ctx_id_t , /* context_handle */
489
489
int , /* conf_req_flag */
490
490
gss_qop_t , /* qop_req */
491
- const gss_buffer_t , /* input_message_buffer */
491
+ gss_const_buffer_t , /* input_message_buffer */
492
492
int * , /* conf_state */
493
493
gss_buffer_t /* output_message_buffer */
494
494
);
@@ -497,7 +497,7 @@ GSS_DLLIMP OM_uint32 gss_wrap(
497
497
GSS_DLLIMP OM_uint32 gss_unwrap (
498
498
OM_uint32 * , /* minor_status */
499
499
gss_const_ctx_id_t , /* context_handle */
500
- const gss_buffer_t , /* input_message_buffer */
500
+ gss_const_buffer_t , /* input_message_buffer */
501
501
gss_buffer_t , /* output_message_buffer */
502
502
int * , /* conf_state */
503
503
gss_qop_t * /* qop_state */
@@ -507,7 +507,7 @@ GSS_DLLIMP OM_uint32 gss_display_status(
507
507
OM_uint32 * , /* minor_status */
508
508
OM_uint32 , /* status_value */
509
509
int , /* status_type */
510
- const gss_OID , /* mech_type (used to be const) */
510
+ gss_const_OID , /* mech_type (used to be const) */
511
511
OM_uint32 * , /* message_context */
512
512
gss_buffer_t /* status_string */
513
513
);
@@ -533,8 +533,8 @@ GSS_DLLIMP OM_uint32 gss_display_name(
533
533
534
534
GSS_DLLIMP OM_uint32 gss_import_name (
535
535
OM_uint32 * , /* minor_status */
536
- const gss_buffer_t , /* input_name_buffer */
537
- const gss_OID , /* input_name_type(used to be const) */
536
+ gss_const_buffer_t , /* input_name_buffer */
537
+ gss_const_OID , /* input_name_type(used to be const) */
538
538
gss_name_t * /* output_name */
539
539
);
540
540
@@ -590,7 +590,7 @@ GSS_DLLIMP OM_uint32 gss_add_cred(
590
590
OM_uint32 * , /* minor_status */
591
591
gss_const_cred_id_t , /* input_cred_handle */
592
592
gss_const_name_t , /* desired_name */
593
- const gss_OID , /* desired_mech */
593
+ gss_const_OID , /* desired_mech */
594
594
gss_cred_usage_t , /* cred_usage */
595
595
OM_uint32 , /* initiator_time_req */
596
596
OM_uint32 , /* acceptor_time_req */
@@ -604,7 +604,7 @@ GSS_DLLIMP OM_uint32 gss_add_cred(
604
604
GSS_DLLIMP OM_uint32 gss_inquire_cred_by_mech (
605
605
OM_uint32 * , /* minor_status */
606
606
gss_const_cred_id_t , /* cred_handle */
607
- const gss_OID , /* mech_type */
607
+ gss_const_OID , /* mech_type */
608
608
gss_name_t * , /* name */
609
609
OM_uint32 * , /* initiator_lifetime */
610
610
OM_uint32 * , /* acceptor_lifetime */
@@ -621,7 +621,7 @@ GSS_DLLIMP OM_uint32 gss_export_sec_context(
621
621
/* New for V2 */
622
622
GSS_DLLIMP OM_uint32 gss_import_sec_context (
623
623
OM_uint32 * , /* minor_status */
624
- const gss_buffer_t , /* interprocess_token */
624
+ gss_const_buffer_t , /* interprocess_token */
625
625
gss_ctx_id_t * /* context_handle */
626
626
);
627
627
@@ -640,22 +640,22 @@ GSS_DLLIMP OM_uint32 gss_create_empty_oid_set(
640
640
/* New for V2 */
641
641
GSS_DLLIMP OM_uint32 gss_add_oid_set_member (
642
642
OM_uint32 * , /* minor_status */
643
- const gss_OID , /* member_oid */
643
+ gss_const_OID , /* member_oid */
644
644
gss_OID_set * /* oid_set */
645
645
);
646
646
647
647
/* New for V2 */
648
648
GSS_DLLIMP OM_uint32 gss_test_oid_set_member (
649
649
OM_uint32 * , /* minor_status */
650
- const gss_OID , /* member */
651
- const gss_OID_set , /* set */
650
+ gss_const_OID , /* member */
651
+ gss_const_OID_set , /* set */
652
652
int * /* present */
653
653
);
654
654
655
655
/* New for V2 */
656
656
GSS_DLLIMP OM_uint32 gss_str_to_oid (
657
657
OM_uint32 * , /* minor_status */
658
- const gss_buffer_t , /* oid_str */
658
+ gss_const_buffer_t , /* oid_str */
659
659
gss_OID * /* oid */
660
660
);
661
661
@@ -669,7 +669,7 @@ GSS_DLLIMP OM_uint32 gss_oid_to_str(
669
669
/* New for V2 */
670
670
GSS_DLLIMP OM_uint32 gss_inquire_names_for_mech (
671
671
OM_uint32 * , /* minor_status */
672
- const gss_OID , /* mechanism */
672
+ gss_const_OID , /* mechanism */
673
673
gss_OID_set * /* name_types */
674
674
);
675
675
@@ -691,7 +691,7 @@ GSS_DLLIMP OM_uint32 gss_duplicate_name(
691
691
GSS_DLLIMP OM_uint32 gss_canonicalize_name (
692
692
OM_uint32 * , /* minor_status */
693
693
gss_const_name_t , /* input_name */
694
- const gss_OID , /* mech_type */
694
+ gss_const_OID , /* mech_type */
695
695
gss_name_t * /* output_name */
696
696
);
697
697
0 commit comments