summaryrefslogtreecommitdiffstats
path: root/src/parser/hdr_subscription_state.h
blob: 0a2809db5d7ec624701d99137ef322be95caa547 (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
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
/*
    Copyright (C) 2005-2009  Michel de Boer <michel@twinklephone.com>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.
*/

// Subscription-State header
// RFC 3265

#ifndef _HDR_SUBSCRIPTION_STATE
#define _HDR_SUBSCRIPTION_STATE

#include <list>
#include <string>
#include "header.h"
#include "parameter.h"

// Subscription states
#define SUBSTATE_ACTIVE		"active"
#define SUBSTATE_PENDING	"pending"
#define SUBSTATE_TERMINATED	"terminated"

// Event reasons
#define EV_REASON_DEACTIVATED	"deactivated"
#define EV_REASON_PROBATION	"probation"
#define EV_REASON_REJECTED	"rejected"
#define EV_REASON_TIMEOUT	"timeout"
#define EV_REASON_GIVEUP	"giveup"
#define EV_REASON_NORESOURCE	"noresource"

using namespace std;

class t_hdr_subscription_state : public t_header {
public:
	string			substate;
	string			reason;
	unsigned long		expires;
	unsigned long		retry_after;
	list<t_parameter>	extensions;

	t_hdr_subscription_state();
	void set_substate(const string &s);
	void set_reason(const string &s);
	void set_expires(unsigned long e);
	void set_retry_after(unsigned long r);
	void add_extension(const t_parameter &p);

	string encode_value(void) const;
};

#endif