linklayerprotocols/pppnif/te_ppp/te_vjcomp/src/dummyPppFsm.cpp
branchRCL_3
changeset 21 abbed5a4b42a
parent 0 af10295192d8
child 22 8d540f55e491
equal deleted inserted replaced
20:7e41d162e158 21:abbed5a4b42a
    66 
    66 
    67 //
    67 //
    68 // Upcall from Timer
    68 // Upcall from Timer
    69 //
    69 //
    70 
    70 
    71 void MPppFsm::TimerComplete(TInt /*aStatus*/)
    71 EXPORT_C void MPppFsm::TimerComplete(TInt /*aStatus*/)
    72 	{
    72 	{
    73 	}
    73 	}
    74 
    74 
    75 //
    75 //
    76 // Upcalls from Recvr
    76 // Upcalls from Recvr
    77 //
    77 //
    78 
    78 
    79 void MPppFsm::LowerLayerUp()
    79 EXPORT_C void MPppFsm::LowerLayerUp()
    80 	{
    80 	{
    81 	}
    81 	}
    82 
    82 
    83 
    83 
    84 void MPppFsm::LowerLayerDown(TInt )
    84 EXPORT_C void MPppFsm::LowerLayerDown(TInt )
    85 	{
    85 	{
    86 	}
    86 	}
    87 
    87 
    88 void MPppFsm::FrameError()
    88 EXPORT_C void MPppFsm::FrameError()
    89 	{
    89 	{
    90 	}
    90 	}
    91 
    91 
    92 void MPppFsm::KillProtocol()
    92 EXPORT_C void MPppFsm::KillProtocol()
    93 	{
    93 	{
    94 	//
    94 	//
    95 	// This came to light as a result of the CCP work
    95 	// This came to light as a result of the CCP work
    96 	// This happens is a protocol is told to shut down,
    96 	// This happens is a protocol is told to shut down,
    97 	// I'm not sure how to handle it?? Do we just Stop it???
    97 	// I'm not sure how to handle it?? Do we just Stop it???
    98 	//
    98 	//
    99 	}
    99 	}
   100 
   100 
   101 TBool MPppFsm::RecvFrame(RMBufChain& )
   101 EXPORT_C TBool MPppFsm::RecvFrame(RMBufChain& )
   102 	{
   102 	{
   103 	return EFalse;
   103 	return EFalse;
   104 	}
   104 	}
   105 	
   105 	
   106 //
   106 //