Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства для  версии 10.9 Mac OS X

Если Вы выполняете различную версию  Mac OS X, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



GSSAPI::Status(3)                    User Contributed Perl Documentation                   GSSAPI::Status(3)



NAME
       GSSAPI::Status - methods for handlings GSSAPI statuses

SYNOPSIS
         use GSSAPI;

         $status = GSSAPI::Status->new(GSS_S_COMPLETE, 0);

         if (GSS_ERROR($status->major)) {
           die "a horrible death";
         }
         if (! $status) {                      # another way of writing the above
           die "a horrible death";
         }

         $status = $some_GSSAPI->someop($args1, etc);
         if ($status) {
           foreach ($status->generic_message, $status->specific_message) {
             print "GSSAPI error: $_\n";
           }
           die "help me";
         }

DESCRIPTION
       "GSSAPI::Status" objects are returned by most other GSSAPI operations.  Such statuses consist of a
       GSSAPI generic code and, for most operations, a mechanism specific code.  These numeric codes can be
       accessed via the methods "major" and "minor".  The standard textual messages that go with the current
       status can be obtained via the "generic_message" and "specific_message" methods.  Each of these
       returns a list of text which should presumably be displayed in order.

       The generic code part of a GSSAPI::Status is composed of three subfields that can be accessed with
       the "GSS_CALLING_ERROR", "GSS_ROUTINE_ERROR", and "GSS_SUPPLEMENTARY_INFO" functions.  The returned
       values can be compared against the constants whose names start with "GSS_S_" if your code wants to
       handle particular errors itself.  The "GSS_ERROR" function returns true if and only if the given
       generic code contains neither a calling error nor a routine error.

       When evaluated in a boolean context, a "GSSAPI::Status" object will be true if and only if the major
       status code is "GSS_S_COMPLETE".

       When evaluated in a string contect, a "GSSAPI::Status" object will return the generic and specific
       messages all joined together with newlines.  This may or may not make "die $status" work usefully.

BUGS
       The base objects are currently implmented as a blessed C structure containing the major and minor
       status codes.  It should probably be a blessed array or hash instead, thereby cutting down on the
       amount of C code involved and making it more flexible.

AUTHOR
       Philip Guenther <pguen@cpan.org>

SEE ALSO
       perl(1) RFC2743



perl v5.16.2                                     2008-02-02                                GSSAPI::Status(3)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Perl. (См. perlbug (1) для инструкций представления.)
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Perl, использующему perlbug (1).
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.