|
reSIProcate/stack
9694
|
#include <sys/types.h>#include <list>#include <vector>#include <utility>#include <memory>#include "resip/stack/Contents.hxx"#include "resip/stack/Headers.hxx"#include "resip/stack/TransactionMessage.hxx"#include "resip/stack/ParserContainer.hxx"#include "resip/stack/ParserCategories.hxx"#include "resip/stack/SecurityAttributes.hxx"#include "resip/stack/Tuple.hxx"#include "resip/stack/Uri.hxx"#include "resip/stack/MessageDecorator.hxx"#include "rutil/BaseException.hxx"#include "rutil/Data.hxx"#include "rutil/DinkyPool.hxx"#include "rutil/StlPoolAllocator.hxx"#include "rutil/Timer.hxx"#include "rutil/HeapInstanceCounter.hxx"
Go to the source code of this file.
Classes | |
| class | resip::SipMessage |
| Represents a SIP message. More... | |
| class | resip::SipMessage::Exception |
| Base exception for SipMessage related exceptions. More... | |
Namespaces | |
| namespace | resip |
SERNonceHelper implements the makeNonce function in the same way as SIP Express Router (SER) - http://www.iptel.org/ser. | |
Defines | |
| #define | defineHeader(_header, _name, _type, _rfc) |
| #define | defineMultiHeader(_header, _name, _type, _rfc) |
| #define defineHeader | ( | _header, | |
| _name, | |||
| _type, | |||
| _rfc | |||
| ) |
const H_##_header::Type& header(const H_##_header& headerType) const; \ H_##_header::Type& header(const H_##_header& headerType); \ inline const H_##_header::Type& const_header(const H_##_header& headerType) const \ {\ return header(headerType);\ }
Definition at line 313 of file SipMessage.hxx.
| #define defineMultiHeader | ( | _header, | |
| _name, | |||
| _type, | |||
| _rfc | |||
| ) |
const H_##_header##s::Type& header(const H_##_header##s& headerType) const; \ H_##_header##s::Type& header(const H_##_header##s& headerType); \ inline const H_##_header##s::Type& const_header(const H_##_header##s& headerType) const \ {\ return header(headerType);\ }
Definition at line 322 of file SipMessage.hxx.
1.7.5.1