Changeset 20283
- Timestamp:
- 05/23/07 11:23:27 (2 years ago)
- Files:
-
- juggler/branches/2.2/modules/vapor/ChangeLog (modified) (1 diff)
- juggler/branches/2.2/modules/vapor/VERSION (modified) (1 diff)
- juggler/branches/2.2/modules/vapor/vpr/vprDomain.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/branches/2.2/modules/vapor/ChangeLog
r20270 r20283 1 1 DATE AUTHOR CHANGE 2 2 ---------- -------- ----------------------------------------------------------- 3 2007-05-23 aronb Changed the default socket statistics collection strategy 4 to NullIOStatsStrategy. 5 NEW VERSION: 1.1.46 3 6 2007-05-23 patrick Cleaned up internal handling of vpr::Interval objects in 4 7 read/write methods of I/O classes. The public read/write juggler/branches/2.2/modules/vapor/VERSION
r20270 r20283 1 1.1.46-0 @05/23/2007 16:25:00 UTC@ 1 2 1.1.45-0 @05/23/2007 16:00:00 UTC@ 2 3 1.1.44-0 @04/05/2007 21:55:00 UTC@ juggler/branches/2.2/modules/vapor/vpr/vprDomain.h
r19729 r20283 69 69 typedef class SocketDatagramImplSIM SocketDatagramImpl; 70 70 typedef class SocketStreamImplSIM SocketStreamImpl; 71 typedef class IOStatsStrategyAdapter<class BaseIOStatsStrategy, class BandwidthIOStatsStrategy>SocketIOStatsStrategy;71 typedef class NullIOStatsStrategy SocketIOStatsStrategy; 72 72 }; 73 73 … … 101 101 typedef class SocketDatagramImplNSPR SocketDatagramImpl; 102 102 typedef class SocketStreamImplNSPR SocketStreamImpl; 103 104 #ifdef __SUNPRO_CC 105 class BaseIOStatsStrategy; 106 class BandwidthIOStatsStrategy; 107 class IOStatsStrategyAdapter<class T1, class T2>; 108 109 typedef IOStatsStrategyAdapter<BaseIOStatsStrategy, BandwidthIOStatsStrategy> SocketIOStatsStrategy; 110 #else 111 typedef class IOStatsStrategyAdapter<class BaseIOStatsStrategy, class BandwidthIOStatsStrategy> SocketIOStatsStrategy; 112 #endif 103 typedef class NullIOStatsStrategy SocketIOStatsStrategy; 113 104 }; 114 105 … … 143 134 typedef class SocketDatagramImplBSD SocketDatagramImpl; 144 135 typedef class SocketStreamImplBSD SocketStreamImpl; 145 typedef IOStatsStrategyAdapter<class BaseIOStatsStrategy, class BandwidthIOStatsStrategy>SocketIOStatsStrategy;136 typedef class NullIOStatsStrategy SocketIOStatsStrategy; 146 137 }; 147 138
