tbf: Explicitly pass the direction to update_ms()

The type of the TBF update_ms() is being called on does not always
reflect whether the TLLI has been signaled by the MS or the SGSN.

This commit adds an additional parameter to tell the method, in which
direction the TLLI has been passed.

Sponsored-by: On-Waves ehf
diff --git a/src/tbf_dl.cpp b/src/tbf_dl.cpp
index b258a3c..5e4a51c 100644
--- a/src/tbf_dl.cpp
+++ b/src/tbf_dl.cpp
@@ -208,7 +208,7 @@
 	dl_tbf->m_tlli = tlli;
 	dl_tbf->m_tlli_valid = 1;
 	dl_tbf->ta = ta;
-	dl_tbf->update_ms(tlli);
+	dl_tbf->update_ms(tlli, GPRS_RLCMAC_DL_TBF);
 
 	LOGP(DRLCMAC, LOGL_DEBUG, "%s [DOWNLINK] START\n", tbf_name(dl_tbf));
 
@@ -806,7 +806,7 @@
 	new_tbf->m_tlli_valid = m_tlli_valid;
 	new_tbf->ta = ta;
 	new_tbf->assign_imsi(m_imsi);
-	new_tbf->update_ms(m_tlli);
+	new_tbf->update_ms(m_tlli, GPRS_RLCMAC_DL_TBF);
 
 	/* Copy over all data to the new TBF */
 	new_tbf->m_llc.put_frame(data, len);