📄 sipheader.h
字号:
/* * Copyright (c) 2000 Billy Biggs <bbiggs@div8.net> * Copyright (c) 2004 Wirlab <kphone@wirlab.net> * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * This library 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 Library General Public * License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * MA 02111-1307, USA. * */#ifndef SIPHEADER_H_INCLUDED#define SIPHEADER_H_INCLUDED#include <qstring.h>/*** @short The SIP Header* Holds the header structure and does transformatios*/class SipHeader{public: enum SipHeaderId { Accept, Accept_Encoding, Accept_Language, Allow, Allow_Events, Also, Authorization, Call_ID, Contact, Content_Encoding, Content_Length, Content_Type, CSeq, Date, Encryption, Event, Expires, From, Hide, Max_Forwards, Min_Expires, Organization, Proxy_Authenticate, Proxy_Authorization, Proxy_Require, Priority, Require, Retry_After, Response_Key, Record_Route, Refer_To, Referred_By, Route, Server, Subject, Subscription_State, Timestamp, To, Unsupported, User_Agent, Via, Warning, WWW_Authenticate, BadHeader }; // SipHeaderID SipHeaderId id; QString data; SipHeader( SipHeaderId newid, QString newdata ); ~SipHeader( void ); static const QString getHeaderString( SipHeaderId id, bool shortform = false ); static SipHeaderId matchHeader( const QString& h );};#endif // SIPHEADER_H_INCLUDED
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -