xmpp_constants.h 849 B

123456789101112131415161718192021222324252627
  1. // Copyright 2022 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. //
  5. // Contains constants for the IQ stanzas inherited by the signaling protocol
  6. // from XMPP.
  7. #ifndef REMOTING_SIGNALING_XMPP_CONSTANTS_H_
  8. #define REMOTING_SIGNALING_XMPP_CONSTANTS_H_
  9. #include "third_party/libjingle_xmpp/xmllite/qname.h"
  10. namespace remoting {
  11. extern const char kIqTypeSet[];
  12. extern const char kIqTypeResult[];
  13. extern const char kIqTypeError[];
  14. extern const jingle_xmpp::StaticQName kQNameIq;
  15. extern const jingle_xmpp::StaticQName kQNameId;
  16. extern const jingle_xmpp::StaticQName kQNameType;
  17. extern const jingle_xmpp::StaticQName kQNameTo;
  18. extern const jingle_xmpp::StaticQName kQNameFrom;
  19. } // namespace remoting
  20. #endif // REMOTING_SIGNALING_XMPP_CONSTANTS_H_