📄 testidentity.cxx
字号:
#include "resip/dum/ClientAuthManager.hxx"#include "resip/dum/ClientRegistration.hxx"#include "resip/dum/DialogUsageManager.hxx"#include "resip/dum/MasterProfile.hxx"#include "resip/dum/Profile.hxx"#include "resip/dum/UserProfile.hxx"#include "resip/dum/RegistrationHandler.hxx"#include "resip/dum/ClientPagerMessage.hxx"#include "resip/dum/ServerPagerMessage.hxx"#include "resip/dum/DialogUsageManager.hxx"#include "resip/dum/AppDialogSet.hxx"#include "resip/dum/AppDialog.hxx"#include "resip/dum/RegistrationHandler.hxx"#include "resip/dum/PagerMessageHandler.hxx"#include "resip/stack/PlainContents.hxx"#include "resip/stack/external/HttpGetMessage.hxx"#include "curlHttp/CurlHttpProvider.hxx"#include "rutil/Log.hxx"#include "rutil/Logger.hxx"#include "rutil/Subsystem.hxx"#ifdef WIN32#include "resip/stack/WinSecurity.hxx"#endif#include <iostream>#include <string>#include <sstream>using namespace std;using namespace resip;#define RESIPROCATE_SUBSYSTEM Subsystem::TESTclass TestIdentityHandler : public ClientPagerMessageHandler, public ServerPagerMessageHandler, public ClientRegistrationHandler{ public: TestIdentityHandler() : _registered(false), _ended(false), _rcvd(false) {}; bool isRegistered() { return _registered; }; bool isEnded() { return _ended; }; bool isRcvd() { return _rcvd; }; virtual void onMessageArrived(ServerPagerMessageHandle handle, const SipMessage& message) { SipMessage ok = handle->accept(); handle->send(ok); Contents *body = message.getContents(); InfoLog( << "ServerPagerMessageHandler::onMessageArrived: " << *body << "\n" ); const SecurityAttributes *attr = message.getSecurityAttributes(); InfoLog( << *attr ); _rcvd = true; } virtual void onSuccess(ClientPagerMessageHandle, const SipMessage& status) { InfoLog( << "ClientMessageHandler::onSuccess\n" ); _ended = true; } virtual void onFailure(ClientPagerMessageHandle, const SipMessage& status, std::auto_ptr<Contents> contents) { InfoLog( << "ClientMessageHandler::onFailure\n" ); _ended = true; } virtual void onSuccess(ClientRegistrationHandle, const SipMessage& response) { InfoLog( << "ClientRegistrationHandler::onSuccess\n" ); _registered = true; } virtual void onRemoved(ClientRegistrationHandle) { InfoLog( << "ClientRegistrationHander::onRemoved\n" ); exit(-1); } virtual void onFailure(ClientRegistrationHandle, const SipMessage& response) { InfoLog( << "ClientRegistrationHandler::onFailure\n" ); exit(-1); } virtual int onRequestRetry(ClientRegistrationHandle, int retrySeconds, const SipMessage& response) { InfoLog( << "ClientRegistrationHandler::onRequestRetry\n" ); exit(-1); } protected: bool _registered; bool _ended; bool _rcvd; };/*****************************************************************************/int main(int argc, char *argv[]){ if ( argc < 3 ) { cout << "usage: " << argv[0] << " sip:user passwd\n"; return 0; } Log::initialize(Log::Cout, Log::Debug, argv[0]); HttpProvider::setFactory( std::auto_ptr<HttpProviderFactory>(new CurlHttpProviderFactory())); bool first = true; NameAddr userAor(argv[1]); Data passwd(argv[2]); InfoLog(<< "user: " << userAor << ", passwd: " << passwd << "\n");#ifdef WIN32 WinSecurity* security = new WinSecurity;#else Security* security = new Security;#endif assert( security ); SipStack clientStack(security); DialogUsageManager clientDum(clientStack); clientDum.addTransport(UDP, 10000 + rand()&0x7fff, V4); clientDum.addTransport(TCP, 10000 + rand()&0x7fff, V4); clientDum.addTransport(TLS, 10000 + rand()&0x7fff, V4); // clientDum.addTransport(UDP, 10000 + rand()&0x7fff, V6); // clientDum.addTransport(TCP, 10000 + rand()&0x7fff, V6); // clientDum.addTransport(TLS, 10000 + rand()&0x7fff, V6); SharedPtr<MasterProfile> clientProfile(new MasterProfile); auto_ptr<ClientAuthManager> clientAuth(new ClientAuthManager()); TestIdentityHandler clientHandler; clientDum.setMasterProfile(clientProfile); clientDum.setClientAuthManager(clientAuth); clientDum.setClientRegistrationHandler(&clientHandler); clientDum.setClientPagerMessageHandler(&clientHandler); clientDum.setServerPagerMessageHandler(&clientHandler); clientDum.getMasterProfile()->setDefaultRegistrationTime(70); clientDum.getMasterProfile()->addSupportedMethod(MESSAGE); clientDum.getMasterProfile()->addSupportedMimeType(MESSAGE, Mime("text", "plain")); clientProfile->setDefaultFrom(userAor); InfoLog( << userAor.uri().host() << " " << userAor.uri().user() << " " << passwd ); clientProfile->setDigestCredential(userAor.uri().host(), userAor.uri().user(), passwd); SipMessage & regMessage = clientDum.makeRegistration(userAor); InfoLog( << regMessage << "Generated register: " << endl << regMessage ); clientDum.send( regMessage ); while (!clientHandler.isEnded() || !clientHandler.isRcvd() ) { FdSet fdset; // Should these be buildFdSet on the DUM? clientStack.buildFdSet(fdset); int err = fdset.selectMilliSeconds(100); assert ( err != -1 ); clientStack.process(fdset); while(clientDum.process()); //if (!(n++ % 10)) cerr << "|/-\\"[(n/10)%4] << '\b'; if (first && clientHandler.isRegistered()) { first = false; InfoLog( << "client registered!!\n" ); InfoLog( << "Sending MESSAGE\n" ); ClientPagerMessageHandle cpmh = clientDum.makePagerMessage(userAor); auto_ptr<Contents> content(new PlainContents(Data("message"))); cpmh.get()->page(content); } } return 0;}/* ==================================================================== * The Vovida Software License, Version 1.0 * * Copyright (c) 2000 Vovida Networks, 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: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. 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. * * 3. The names "VOCAL", "Vovida Open Communication Application Library", * and "Vovida Open Communication Application Library (VOCAL)" must * not be used to endorse or promote products derived from this * software without prior written permission. For written * permission, please contact vocal@vovida.org. * * 4. Products derived from this software may not be called "VOCAL", nor * may "VOCAL" appear in their name, without prior written * permission of Vovida Networks, Inc. * * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES * IN EXCESS OF $1,000, NOR FOR ANY 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. * * ==================================================================== * * This software consists of voluntary contributions made by Vovida * Networks, Inc. and many individuals on behalf of Vovida Networks, * Inc. For more information on Vovida Networks, Inc., please see * <http://www.vovida.org/>. * */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -