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.
sems/core/AmSipReply.h

31 lines
493 B

#ifndef _AmReply_h_
#define _AmReply_h_
#include "AmCmd.h"
#include "AmEventQueue.h"
#include <string>
using std::string;
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