xmpp_constants.cc 663 B

12345678910111213141516171819
  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. #include "remoting/signaling/xmpp_constants.h"
  5. namespace remoting {
  6. const char kIqTypeSet[] = "set";
  7. const char kIqTypeResult[] = "result";
  8. const char kIqTypeError[] = "error";
  9. const jingle_xmpp::StaticQName kQNameIq = {"jabber:client", "iq"};
  10. const jingle_xmpp::StaticQName kQNameId = {"", "id"};
  11. const jingle_xmpp::StaticQName kQNameType = {"", "type"};
  12. const jingle_xmpp::StaticQName kQNameTo = {"", "to"};
  13. const jingle_xmpp::StaticQName kQNameFrom = {"", "from"};
  14. } // namespace remoting