equal
deleted
inserted
replaced
44 |
44 |
45 using namespace Messages; |
45 using namespace Messages; |
46 using namespace MeshMachine; |
46 using namespace MeshMachine; |
47 using namespace ESock; |
47 using namespace ESock; |
48 |
48 |
49 #if (OST_TRACE_CATEGORY & OST_TRACE_CATEGORY_DEBUG) |
49 #ifdef __FLOG_ACTIVE |
50 //These variables are used only if flog is active. |
50 //These variables are used only if flog is active. |
51 _LIT8(KTcpDumpFirstTag,"TcpDump"); |
51 _LIT8(KTcpDumpFirstTag,"TcpDump"); |
52 static const TUint16 KTcpDumpLinkType = 12; |
52 static const TUint16 KTcpDumpLinkType = 12; |
53 #endif |
53 #endif |
54 |
54 |
120 // Retrieve Agent provisioned information only available at StartFlow time |
120 // Retrieve Agent provisioned information only available at StartFlow time |
121 DynamicProvisionConfigL(); |
121 DynamicProvisionConfigL(); |
122 InitialiseL(MControllerObserver::EStart, KErrNone); |
122 InitialiseL(MControllerObserver::EStart, KErrNone); |
123 |
123 |
124 //the name calculation should be done only if logging is enabled |
124 //the name calculation should be done only if logging is enabled |
125 #if (OST_TRACE_CATEGORY & OST_TRACE_CATEGORY_DEBUG) |
125 #ifdef __FLOG_ACTIVE |
126 const TUint KModemNameLen = KCommsDbSvrMaxColumnNameLength + 10; // need enough for ppp-XXX.txt - e.g. ppp-comm-1.txt, ppp-btcomm-10.txt etc |
126 const TUint KModemNameLen = KCommsDbSvrMaxColumnNameLength + 10; // need enough for ppp-XXX.txt - e.g. ppp-comm-1.txt, ppp-btcomm-10.txt etc |
127 TBuf8<KModemNameLen> modemName; |
127 TBuf8<KModemNameLen> modemName; |
128 |
128 |
129 _LIT8(KDoubleColon, "::"); |
129 _LIT8(KDoubleColon, "::"); |
130 |
130 |