aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-umts_fp.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-05-16 05:57:41 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-05-16 05:57:41 +0000
commitce6e224b5be55c50f5c5948fc77c10db9dbda8b9 (patch)
treef38ae448ff1f4699034fb8c67f39df8df6acc007 /epan/dissectors/packet-umts_fp.c
parent6a4b07bb5520560bf9179ee56a1be03471d1a38c (diff)
Bug fixes and add HSDSCH
svn path=/trunk/; revision=42649
Diffstat (limited to 'epan/dissectors/packet-umts_fp.c')
-rw-r--r--epan/dissectors/packet-umts_fp.c53
1 files changed, 33 insertions, 20 deletions
diff --git a/epan/dissectors/packet-umts_fp.c b/epan/dissectors/packet-umts_fp.c
index 16c39ea96c..213f99b6ef 100644
--- a/epan/dissectors/packet-umts_fp.c
+++ b/epan/dissectors/packet-umts_fp.c
@@ -3140,7 +3140,7 @@ fp_set_per_packet_inf_from_conv(umts_fp_conversation_info_t *p_conv_data, tvbuff
fpi->channel = p_conv_data->channel;
fpi->dch_crc_present = p_conv_data->dch_crc_present;
/*fpi->paging_indications;*/
- fpi->num_chans = p_conv_data->num_dch_in_flow;
+ fpi->link_type = FP_Link_Ethernet;
if(pinfo->link_dir==P2P_DIR_UL){
fpi->is_uplink = TRUE;
@@ -3148,29 +3148,42 @@ fp_set_per_packet_inf_from_conv(umts_fp_conversation_info_t *p_conv_data, tvbuff
fpi->is_uplink = FALSE;
}
- /* Peek at the packet as the per packet info seems not to take the tfi into account */
- oct = tvb_get_guint8(tvb,offset);
- if((oct&0x01) == 1){
- /* control frame, we're done */
+ switch(fpi->channel){
+ case CHANNEL_HSDSCH:
+ fpi->hsdsch_entity = p_conv_data->hsdsch_entity;
return fpi;
- }
+ case CHANNEL_DCH:
+ fpi->num_chans = p_conv_data->num_dch_in_flow;
+
+
+ /* Peek at the packet as the per packet info seems not to take the tfi into account */
+ oct = tvb_get_guint8(tvb,offset);
+ if((oct&0x01) == 1){
+ /* control frame, we're done */
+ return fpi;
+ }
- /* Set offset to point to first TFI
- * the Number of TFI's = number of DCH's in the flow
- */
- offset = 2;
-
- for(i=0;i<fpi->num_chans;i++){
- tfi = tvb_get_guint8(tvb,offset);
- if(pinfo->link_dir==P2P_DIR_UL){
- fpi->chan_tf_size[i] = p_conv_data->fp_dch_chanel_info[i].ul_chan_tf_size[tfi];
- fpi->chan_num_tbs[i] = p_conv_data->fp_dch_chanel_info[i].ul_chan_num_tbs[tfi];
- }else{
- fpi->chan_tf_size[i] = p_conv_data->fp_dch_chanel_info[i].dl_chan_tf_size[tfi];
- fpi->chan_num_tbs[i] = p_conv_data->fp_dch_chanel_info[i].dl_chan_num_tbs[tfi];
+ /* Set offset to point to first TFI
+ * the Number of TFI's = number of DCH's in the flow
+ */
+ offset = 2;
+
+ for(i=0;i<fpi->num_chans;i++){
+ tfi = tvb_get_guint8(tvb,offset);
+ if(pinfo->link_dir==P2P_DIR_UL){
+ fpi->chan_tf_size[i] = p_conv_data->fp_dch_chanel_info[i].ul_chan_tf_size[tfi];
+ fpi->chan_num_tbs[i] = p_conv_data->fp_dch_chanel_info[i].ul_chan_num_tbs[tfi];
+ }else{
+ fpi->chan_tf_size[i] = p_conv_data->fp_dch_chanel_info[i].dl_chan_tf_size[tfi];
+ fpi->chan_num_tbs[i] = p_conv_data->fp_dch_chanel_info[i].dl_chan_num_tbs[tfi];
+ }
+ offset++;
}
- offset++;
+ break;
+ default:
+ return NULL;
}
+
#if 0
/* remaining data to be set */
no_ddi_entries;