summaryrefslogtreecommitdiffstats
path: root/remoting/signaling/jid_util.h
blob: 7660ae38b1ac5d1c67db5acbec2ab7abd61dd61c (plain)
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
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_SIGNALING_JID_UTIL_H_
#define REMOTING_SIGNALING_JID_UTIL_H_

#include <string>

namespace remoting {

// Normalizes the |jid| by converting case-insensitive parts (node and domain)
// to lower-case.
std::string NormalizeJid(const std::string& jid);

// Splits a JID into a bare JID and a resource suffix.  Either or both
// of |full_jid| and |resource| may be null.  If |full_jid| is already
// a bare JID, |resource| is set to the empty string.  Returns true of
// |full_jid| has a resource, false if not.
//
// e.g. "user@domain/resource" -> "user@domain", "resource", true
//      "user@domain"          -> "user@domain", "",         false
bool SplitJidResource(const std::string& full_jid,
                      std::string* bare_jid,
                      std::string* resource);

}  // namespace remoting

#endif  // REMOTING_SIGNALING_JID_UTIL_H_