Changeset 4794
- Timestamp:
- 05/06/10 14:20:44 (3 years ago)
- Location:
- vic/branches/cc/cc
- Files:
-
- 1 added
- 1 modified
-
cc_common.h (added)
-
tfwc_sndr.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vic/branches/cc/cc/tfwc_sndr.h
r4793 r4794 36 36 37 37 #include "bitmap.h" // bitmap operations 38 #include "cc_common.h" 38 39 #include "cc_timer.h" 39 40 #define DUPACKS 3 // simulating TCP's 3 dupacks41 #define TSZ 1000 // tsvec_ size42 #define SSZ 1000 // seqvec_ size43 #define RSZ 1000 // refvec_ size44 #define PSR 10000 // packet size record45 46 #define SHORT_HISTORY // history size = 847 #ifdef SHORT_HISTORY48 #define HSZ 8 // history size for avg loss history49 #else50 #define HSZ 16 // history size for avg loss history51 #endif52 53 #define T_RTTVAR_BITS 254 #define T_SRTT_BITS 355 56 #define BITLEN 1657 40 58 41 // timer related
