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
|
// Copyright (c) 2011 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_PROTOCOL_JINGLE_MESSAGES_H_
#define REMOTING_PROTOCOL_JINGLE_MESSAGES_H_
#include <list>
#include <string>
#include "base/memory/scoped_ptr.h"
#include "third_party/libjingle/source/talk/xmllite/xmlelement.h"
namespace cricket {
class Candidate;
} // namespace cricket
namespace remoting {
namespace protocol {
class ContentDescription;
extern const char kJabberNamespace[];
extern const char kJingleNamespace[];
extern const char kP2PTransportNamespace[];
struct JingleMessage {
enum ActionType {
UNKNOWN_ACTION,
SESSION_INITIATE,
SESSION_ACCEPT,
SESSION_REJECT,
SESSION_TERMINATE,
TRANSPORT_INFO,
};
JingleMessage();
JingleMessage(const std::string& to_value,
ActionType action_value,
const std::string& sid_value);
~JingleMessage();
// Caller keeps ownership of |stanza|.
static bool IsJingleMessage(const buzz::XmlElement* stanza);
// Caller keeps ownership of |stanza|. |error| is set to debug error
// message when parsing fails.
bool ParseXml(const buzz::XmlElement* stanza, std::string* error);
buzz::XmlElement* ToXml();
std::string from;
std::string to;
ActionType action;
std::string sid;
scoped_ptr<ContentDescription> description;
std::list<cricket::Candidate> candidates;
buzz::QName termination_reason;
};
struct JingleMessageReply {
enum ReplyType {
REPLY_RESULT,
REPLY_ERROR,
};
enum ErrorType {
NONE,
BAD_REQUEST,
NOT_IMPLEMENTED,
INVALID_SID,
UNEXPECTED_REQUEST,
};
JingleMessageReply();
JingleMessageReply(ErrorType error);
JingleMessageReply(ErrorType error, const std::string& text);
~JingleMessageReply();
// Formats reply stanza for the specified |request_stanza|. Id and
// recepient as well as other information needed to generate a valid
// reply are taken from |request_stanza|.
buzz::XmlElement* ToXml(const buzz::XmlElement* request_stanza) const;
ReplyType type;
ErrorType error_type;
std::string text;
};
} // protocol
} // remoting
#endif // REMOTING_PROTOCOL_JINGLE_MESSAGES_H_
|