mirror of https://github.com/sipwise/sems.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
484 B
30 lines
484 B
#ifndef _AmReply_h_
|
|
#define _AmReply_h_
|
|
|
|
#include "AmEventQueue.h"
|
|
|
|
#include <string>
|
|
using std::string;
|
|
|
|
/** \brief represents a SIP reply */
|
|
struct AmSipReply
|
|
{
|
|
unsigned int code;
|
|
string reason;
|
|
string next_request_uri;
|
|
string next_hop;
|
|
string route;
|
|
string hdrs;
|
|
string body;
|
|
|
|
// Parsed from the hdrs
|
|
// string callid;
|
|
string remote_tag;
|
|
string local_tag;
|
|
unsigned int cseq;
|
|
|
|
AmSipReply();
|
|
};
|
|
|
|
#endif
|