Changeset 705
- Timestamp:
- 11/30/11 15:19:58 (6 months ago)
- Files:
-
- 8 edited
-
branches/1.0/sources/thelib/include/application/baseappprotocolhandler.h (modified) (4 diffs)
-
branches/1.0/sources/thelib/src/protocols/baseprotocol.cpp (modified) (2 diffs)
-
branches/1.0/sources/thelib/src/protocols/variant/basevariantprotocol.cpp (modified) (1 diff)
-
branches/1.0/sources/thelib/src/streaming/baseinstream.cpp (modified) (2 diffs)
-
trunk/sources/thelib/include/application/baseappprotocolhandler.h (modified) (4 diffs)
-
trunk/sources/thelib/src/protocols/baseprotocol.cpp (modified) (2 diffs)
-
trunk/sources/thelib/src/protocols/variant/basevariantprotocol.cpp (modified) (1 diff)
-
trunk/sources/thelib/src/streaming/baseinstream.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/sources/thelib/include/application/baseappprotocolhandler.h
r577 r705 1 /* 1 /* 2 2 * Copyright (c) 2010, 3 3 * Gavriloaie Eugen-Andrei (shiretu@gmail.com) … … 30 30 /*! 31 31 @class BaseAppProtocolHandler 32 @brief 32 @brief 33 33 */ 34 34 class DLLEXP BaseAppProtocolHandler { … … 40 40 BaseAppProtocolHandler(Variant &configuration); 41 41 virtual ~BaseAppProtocolHandler(); 42 42 43 43 virtual bool ParseAuthenticationNode(Variant &node, Variant &result); 44 44 … … 47 47 @param pApplication 48 48 */ 49 v oid SetApplication(BaseClientApplication *pApplication);49 virtual void SetApplication(BaseClientApplication *pApplication); 50 50 /*! 51 51 @brief Sets the pointer to the application. -
branches/1.0/sources/thelib/src/protocols/baseprotocol.cpp
r637 r705 1 /* 1 /* 2 2 * Copyright (c) 2010, 3 3 * Gavriloaie Eugen-Andrei (shiretu@gmail.com) … … 262 262 result = format("T(%d) <-> ", GetIOHandler()->GetInboundFd()); 263 263 break; 264 case IOHT_STDIO: 265 result = format("STDIO <-> "); 266 break; 264 267 default: 265 268 result = format("#unknown %hhu#(%d,%d) <-> ", -
branches/1.0/sources/thelib/src/protocols/variant/basevariantprotocol.cpp
r682 r705 162 162 return false; 163 163 } 164 GracefullyEnqueueForDelete();165 164 return true; 166 165 } -
branches/1.0/sources/thelib/src/streaming/baseinstream.cpp
r637 r705 1 /* 1 /* 2 2 * Copyright (c) 2010, 3 3 * Gavriloaie Eugen-Andrei (shiretu@gmail.com) … … 56 56 info["outStreamsUniqueIds"] = Variant(); 57 57 while (pTemp != NULL) { 58 info["outStreamsUniqueIds"].PushToArray(pTemp->info->GetUniqueId()); 58 info["outStreamsUniqueIds"].PushToArray( 59 ((((uint64_t) namespaceId) << 32) | pTemp->info->GetUniqueId())); 59 60 pTemp = pTemp->pPrev; 60 61 } -
trunk/sources/thelib/include/application/baseappprotocolhandler.h
r577 r705 1 /* 1 /* 2 2 * Copyright (c) 2010, 3 3 * Gavriloaie Eugen-Andrei (shiretu@gmail.com) … … 30 30 /*! 31 31 @class BaseAppProtocolHandler 32 @brief 32 @brief 33 33 */ 34 34 class DLLEXP BaseAppProtocolHandler { … … 40 40 BaseAppProtocolHandler(Variant &configuration); 41 41 virtual ~BaseAppProtocolHandler(); 42 42 43 43 virtual bool ParseAuthenticationNode(Variant &node, Variant &result); 44 44 … … 47 47 @param pApplication 48 48 */ 49 v oid SetApplication(BaseClientApplication *pApplication);49 virtual void SetApplication(BaseClientApplication *pApplication); 50 50 /*! 51 51 @brief Sets the pointer to the application. -
trunk/sources/thelib/src/protocols/baseprotocol.cpp
r637 r705 1 /* 1 /* 2 2 * Copyright (c) 2010, 3 3 * Gavriloaie Eugen-Andrei (shiretu@gmail.com) … … 262 262 result = format("T(%d) <-> ", GetIOHandler()->GetInboundFd()); 263 263 break; 264 case IOHT_STDIO: 265 result = format("STDIO <-> "); 266 break; 264 267 default: 265 268 result = format("#unknown %hhu#(%d,%d) <-> ", -
trunk/sources/thelib/src/protocols/variant/basevariantprotocol.cpp
r682 r705 162 162 return false; 163 163 } 164 GracefullyEnqueueForDelete();165 164 return true; 166 165 } -
trunk/sources/thelib/src/streaming/baseinstream.cpp
r637 r705 1 /* 1 /* 2 2 * Copyright (c) 2010, 3 3 * Gavriloaie Eugen-Andrei (shiretu@gmail.com) … … 56 56 info["outStreamsUniqueIds"] = Variant(); 57 57 while (pTemp != NULL) { 58 info["outStreamsUniqueIds"].PushToArray(pTemp->info->GetUniqueId()); 58 info["outStreamsUniqueIds"].PushToArray( 59 ((((uint64_t) namespaceId) << 32) | pTemp->info->GetUniqueId())); 59 60 pTemp = pTemp->pPrev; 60 61 }
Note: See TracChangeset
for help on using the changeset viewer.
