subscribeexpires.cxx
来自「这是国外的resip协议栈」· CXX 代码 · 共 94 行
CXX
94 行
#include "resip/stack/SipMessage.hxx"#include "rutil/Logger.hxx"#include "tfm/SipEvent.hxx"#include "tfm/predicates/SubscribeExpires.hxx"#define RESIPROCATE_SUBSYSTEM resip::Subsystem::TESTusing namespace resip;SubscribeExpires::SubscribeExpires(int expireSecs) : mExpireSecs(expireSecs){}bool approxEqual(int x, int y){ //return (x-y)*(x-y) <= 4; return ((int)(0.6*y) <= x && x < y);}bool SubscribeExpires::operator()(boost::shared_ptr<Event> event){ SipEvent* sipEvent = dynamic_cast<SipEvent*>(event.get()); assert(sipEvent); boost::shared_ptr<resip::SipMessage> msg = sipEvent->getMessage(); return (*this)(msg);}boolSubscribeExpires::operator()(boost::shared_ptr<resip::SipMessage> msg){ //CerrLog(<< "SubscribeExpires::operator() " << *msg); if (!msg->exists(h_SubscriptionState)) { ErrLog(<< "SubscribeExpires failed: NOTIFY without a Subscription-State header"); return false; } if (mExpireSecs == 0) { if (msg->header(h_SubscriptionState).value() != "terminated") { ErrLog(<< "SubscribeExpires failed: expired but not terminated"); return false; } if (msg->header(h_SubscriptionState).param(p_reason) != "timeout") { ErrLog(<< "SubscribeExpires failed: expired but not reasone=timeout"); return false; } } if (!approxEqual(msg->header(h_SubscriptionState).param(p_expires), mExpireSecs)) { ErrLog(<< "SubscribeExpires failed: expires not as expected: " << msg->header(h_SubscriptionState).param(p_expires) << " !~= " << mExpireSecs); return false; } return true;}/* Copyright (c) 2005, PurpleComm, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of PurpleComm, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?