Changeset 4796
- Timestamp:
- 05/06/10 15:30:36 (3 years ago)
- Location:
- vic/branches/cc/cc
- Files:
-
- 3 modified
-
cc_common.h (modified) (1 diff)
-
tfwc_sndr.cpp (modified) (2 diffs)
-
tfwc_sndr.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vic/branches/cc/cc/cc_common.h
r4794 r4796 53 53 #define BITLEN 16 54 54 55 // timestamp skew from Vic to Network Device 56 // (approximately 10 usec) 57 #define SKEW 0.000010 58 55 59 #endif /* vic_cc_common_h */ -
vic/branches/cc/cc/tfwc_sndr.cpp
r4793 r4796 44 44 #include "tfwc_sndr.h" 45 45 46 // timestamp skew from Vic to Network Device47 // (approximately 10 usec)48 #define SKEW 0.00001049 50 46 /* 51 47 * retransmission timer … … 206 202 u_int16_t *chunk, double so_rtime, bool recv_by_ch, pktbuf* pb) 207 203 { 204 UNUSED(recv_by_ch); 205 UNUSED(pb); 206 208 207 switch (type) { 209 208 // retrieve ackvec -
vic/branches/cc/cc/tfwc_sndr.h
r4794 r4796 35 35 #define vic_tfwc_sndr_h 36 36 37 #include "config.h" 37 38 #include "bitmap.h" // bitmap operations 38 39 #include "cc_common.h" … … 64 65 65 66 // virtual functions 66 virtual void cc_tfwc_output(bool recv_by_ch=0) { };67 virtual void cc_tfwc_output(bool recv_by_ch=0) {UNUSED(recv_by_ch);}; 67 68 virtual void cc_tfwc_output(pktbuf*) {}; 68 virtual void cc_tfwc_trigger(pktbuf* pb=0) { };69 virtual void cc_tfwc_trigger(pktbuf* pb=0) {UNUSED(pb);}; 69 70 virtual double tx_ts_offset() {}; 70 71 virtual int tx_buf_size() {};
