diff -r 6c59112cfd31 -r 38bf5461e270 ipsservices/ipssosplugin/inc/ipsplgpop3connectop.h --- a/ipsservices/ipssosplugin/inc/ipsplgpop3connectop.h Thu Sep 30 11:43:07 2010 +0300 +++ b/ipsservices/ipssosplugin/inc/ipsplgpop3connectop.h Thu Oct 14 17:33:43 2010 +0300 @@ -46,11 +46,13 @@ * @param aEventHandler event handler for sending sync events * @param aSignallingAllowed for asynchronous request response message * @param aFetchWillFollow used when connection must be kept open + * @param aSilentConnection set if silent connection is used * @return new instance of the class */ // MFSMailRequestObserver& changed to pointer // aSignallingAllowed parameter added // aFetchWillFollow parameter added + // aSilentConnection parameter added static CIpsPlgPop3ConnectOp* NewL( CMsvSession& aMsvSession, TRequestStatus& aObserverRequestStatus, @@ -62,7 +64,8 @@ TInt aFSRequestId, CIpsPlgEventHandler* aEventHandler, TBool aSignallingAllowed=ETrue, - TBool aFetchWillFollow=EFalse ); + TBool aFetchWillFollow=EFalse, + TBool aSilentConnection=EFalse); /** * @@ -118,6 +121,7 @@ // MFSMailRequestObserver& changed to pointer // aSignallingAllowed parameter added // aFetchWillFollow parameter added + // aSilentConnection parameter added CIpsPlgPop3ConnectOp( CMsvSession& aMsvSession, TRequestStatus& aObserverRequestStatus, @@ -129,7 +133,8 @@ TInt aFSRequestId, CIpsPlgEventHandler* aEventHandler, TBool aSignallingAllowed, - TBool aFetchWillFollow ); + TBool aFetchWillFollow, + TBool aSilentConnection); /** * @@ -179,6 +184,8 @@ // iAlreadyConnected removed // TBool iFetchWillFollow; + // whether silent connection is requested or not + TBool iSilentConnection; // };