diff --git a/src/tbf.cpp b/src/tbf.cpp index fa9d2638..cac807ce 100644 --- a/src/tbf.cpp +++ b/src/tbf.cpp @@ -508,7 +508,7 @@ struct gprs_rlcmac_tbf *tbf_alloc(struct gprs_rlcmac_bts *bts, if (!tbf) return NULL; - tbf->m_create_ts = time(NULL); + tbf->m_created_ts = time(NULL); tbf->bts = bts->bts; tbf->direction = dir; tbf->m_tfi = tfi; @@ -1765,7 +1765,7 @@ void tbf_print_vty_info(struct vty *vty, llist_head *ltbf) tbf->imsi(), VTY_NEWLINE); vty_out(vty, " created=%lu state=%08x 1st_TS=%d 1st_cTS=%d ctrl_TS=%d " "MS_CLASS=%d%s", - tbf->create_ts(), tbf->state_flags, tbf->first_ts, + tbf->created_ts(), tbf->state_flags, tbf->first_ts, tbf->first_common_ts, tbf->control_ts, tbf->ms_class, VTY_NEWLINE); vty_out(vty, " TS_alloc="); diff --git a/src/tbf.h b/src/tbf.h index 5c8ec623..c3019607 100644 --- a/src/tbf.h +++ b/src/tbf.h @@ -138,7 +138,7 @@ struct gprs_rlcmac_tbf { uint16_t sns() const; - time_t create_ts() const; + time_t created_ts() const; /* attempt to make things a bit more fair */ void rotate_in_list(); @@ -227,7 +227,7 @@ struct gprs_rlcmac_tbf { uint32_t m_tlli; uint8_t m_tlli_valid; uint8_t m_tfi; - time_t m_create_ts; + time_t m_created_ts; /* store IMSI for look-up and PCH retransmission */ char m_imsi[16]; @@ -314,9 +314,9 @@ inline uint16_t gprs_rlcmac_tbf::sns() const const char *tbf_name(gprs_rlcmac_tbf *tbf); -inline time_t gprs_rlcmac_tbf::create_ts() const +inline time_t gprs_rlcmac_tbf::created_ts() const { - return m_create_ts; + return m_created_ts; } #endif