This file is indexed.

/usr/include/gloox/subscription.h is in libgloox-dev 1.0.11-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
/*
  Copyright (c) 2007-2014 by Jakob Schroeter <js@camaya.net>
  This file is part of the gloox library. http://camaya.net/gloox

  This software is distributed under a license. The full license
  agreement can be found in the file LICENSE in this distribution.
  This software may not be copied, modified, sold or distributed
  other than expressed in the named license agreement.

  This software is distributed without any warranty.
*/

#ifndef SUBSCRIPTION_H__
#define SUBSCRIPTION_H__

#include "stanza.h"

#include <string>

namespace gloox
{

  class JID;

  /**
   * @brief An abstraction of a subscription stanza.
   *
   * @author Jakob Schroeter <js@camaya.net>
   * @since 1.0
   */
  class GLOOX_API Subscription : public Stanza
  {

    public:

      friend class ClientBase;

      /**
       * Describes the different valid message types.
       */
      enum S10nType
      {
        Subscribe,                  /**< A subscription request. */
        Subscribed,                 /**< A subscription notification. */
        Unsubscribe,                /**< An unsubscription request. */
        Unsubscribed,               /**< An unsubscription notification. */
        Invalid                     /**< The stanza is invalid. */
      };

      /**
       * Creates a Subscription request.
       * @param type The presence type.
       * @param to The intended receiver. Use an empty JID to create a broadcast packet.
       * @param status An optional status message (e.g. "please authorize me").
       * @param xmllang An optional xml:lang for the status message.
       */
      Subscription( S10nType type, const JID& to, const std::string& status = EmptyString,
                     const std::string& xmllang = EmptyString );
      /**
       * Destructor.
       */
      virtual ~Subscription();

      /**
       * Returns the subscription stanza's type.
       * @return The subscription stanza's type.
       *
       */
      S10nType subtype() const { return m_subtype; }

      /**
       * Returns the status text of a presence stanza for the given language if available.
       * If the requested language is not available, the default status text (without a xml:lang
       * attribute) will be returned.
       * @param lang The language identifier for the desired language. It must conform to
       * section 2.12 of the XML specification and RFC 3066. If empty, the default body
       * will be returned, if any.
       * @return The status text set by the sender.
       */
      const std::string status( const std::string& lang = "default" ) const
      {
        return findLang( m_stati, m_status, lang );
      }

      // reimplemented from Stanza
      virtual Tag* tag() const;

    private:
#ifdef SUBSCRIPTION_TEST
    public:
#endif
      /**
       * Creates a Subscription request from the given Tag. The original Tag will be ripped off.
       * @param tag The Tag to parse.
       */
      Subscription( Tag* tag );

      S10nType m_subtype;
      StringMap* m_stati;
      std::string m_status;

  };

}

#endif // SUBSCRIPTION_H__