diff -r 000000000000 -r af10295192d8 linklayerprotocols/pppnif/te_ppp/te_pppcomp/src/dummyPppMisc.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/linklayerprotocols/pppnif/te_ppp/te_pppcomp/src/dummyPppMisc.cpp Tue Jan 26 15:23:49 2010 +0200 @@ -0,0 +1,113 @@ +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// dummy PPPMISC.CPP +// +// + +#include +#include "PPPBASE.H" + +// +// PPP Link Interface Support +// + +MPppRecvr::MPppRecvr(CPppLcp* , TPppPhase , TUint ):iPppId(0),iActivePhase(EPppPhaseTerminate), + iPppLcp(NULL),iPppAbortCode(0),iPppRecvrListLink() + { + } + +MPppRecvr::~MPppRecvr() + { + } + +void MPppRecvr::FlowOn() + { + } + +void MPppRecvr::LowerLayerUp() + { + } + +void MPppRecvr::LowerLayerDown(TInt) + { + } + +void MPppRecvr::Deque() + { + } + +void MPppRecvr::Register(TUint ) + { + } + +void MPppRecvr::Reregister(TUint , TPppPhase ) + { + } + +void MPppRecvr::Deregister() + { + } + + +typedef CNifFactory* (*TPppFactoryNewL)(void); +CNifFactory* MPppRecvr::FindPppFactoryL(const TDesC& aFilename, TUid aUid2, CObjectCon& aCon) +// +// Basically this is all the stuff required to load a DLL appart from the +// Factory->CreatMe call +// + { + CNifFactory* Factory=NULL; + TParse parse; + User::LeaveIfError(parse.Set(aFilename, 0, 0)); + + TName dummy1; + TInt find=0; + + if(aCon.FindByName(find, parse.Name(), dummy1)!=KErrNone) + { + + // Else load the module + TAutoClose lib; + User::LeaveIfError(lib.iObj.Load(aFilename)); + lib.PushL(); + + // The Uid check + if(lib.iObj.Type()[1]!=aUid2) + User::Leave(KErrBadLibraryEntryPoint); + + TPppFactoryNewL libEntry=(TPppFactoryNewL)lib.iObj.Lookup(1); + if (libEntry==NULL) + User::Leave(KErrNoMemory); + + Factory =(*libEntry)(); // Opens CObject + if (!Factory) + User::Leave(KErrBadDriver); + + CleanupStack::PushL(TCleanupItem(CNifFactory::Cleanup, Factory)); + Factory->InitL(lib.iObj, aCon); // Transfers the library object if successful + + // Can pop the library now - auto close will have no effect because handle is null + CleanupStack::Pop(); + lib.Pop(); + + } + else + { + Factory=(CNifFactory*)aCon.At(find); + Factory->Open(); + } + return Factory; + } + +