@@ -930,11 +930,17 @@ static int tq_is_empty (int chan)
930
930
*
931
931
*--------------------------------------------------------------------*/
932
932
933
+ //#define DEBUG2 1
934
+
935
+
933
936
int tq_count (int chan , int prio , char * source , char * dest , int bytes )
934
937
{
935
938
936
- packet_t pp ;
937
- int n ;
939
+
940
+ #if DEBUG2
941
+ text_color_set (DW_COLOR_DEBUG );
942
+ dw_printf ("tq_count(chan=%d, prio=%d, source=\"%s\", dest=\"%s\", bytes=%d)\n" , chan , prio , source , dest , bytes );
943
+ #endif
938
944
939
945
if (prio == -1 ) {
940
946
return (tq_count (chan , TQ_PRIO_0_HI , source , dest , bytes )
@@ -950,26 +956,44 @@ int tq_count (int chan, int prio, char *source, char *dest, int bytes)
950
956
}
951
957
952
958
if (queue_head [chan ][prio ] == 0 ) {
959
+ #if DEBUG2
960
+ text_color_set (DW_COLOR_DEBUG );
961
+ dw_printf ("tq_count: queue chan %d, prio %d is empty, returning 0.\n" , chan , prio );
962
+ #endif
953
963
return (0 );
954
964
}
955
965
956
966
// Don't want lists being rearranged while we are traversing them.
957
967
958
968
dw_mutex_lock (& tq_mutex );
959
969
960
- n = 0 ;
961
- pp = queue_head [chan ][prio ];
970
+ int n = 0 ; // Result. Number of bytes or packets.
971
+ packet_t pp = queue_head [chan ][prio ];;
972
+
962
973
while (pp != NULL ) {
974
+ if (ax25_get_num_addr (pp ) >= AX25_MIN_ADDRS ) {
975
+ // Consider only real packets.
976
+
963
977
int count_it = 1 ;
964
978
965
979
if (source != NULL && * source != '\0' ) {
966
980
char frame_source [AX25_MAX_ADDR_LEN ];
967
981
ax25_get_addr_with_ssid (pp , AX25_SOURCE , frame_source );
982
+ #if DEBUG2
983
+ // I'm cringing at the thought of printing while in a critical region. But it's only for temp debug. :-(
984
+ text_color_set (DW_COLOR_DEBUG );
985
+ dw_printf ("tq_count: compare to frame source %s\n" , frame_source );
986
+ #endif
968
987
if (strcmp (source ,frame_source ) != 0 ) count_it = 0 ;
969
988
}
970
989
if (count_it && dest != NULL && * dest != '\0' ) {
971
990
char frame_dest [AX25_MAX_ADDR_LEN ];
972
991
ax25_get_addr_with_ssid (pp , AX25_DESTINATION , frame_dest );
992
+ #if DEBUG2
993
+ // I'm cringing at the thought of printing while in a critical region. But it's only for debug debug. :-(
994
+ text_color_set (DW_COLOR_DEBUG );
995
+ dw_printf ("tq_count: compare to frame destination %s\n" , frame_dest );
996
+ #endif
973
997
if (strcmp (dest ,frame_dest ) != 0 ) count_it = 0 ;
974
998
}
975
999
@@ -981,12 +1005,13 @@ int tq_count (int chan, int prio, char *source, char *dest, int bytes)
981
1005
n ++ ;
982
1006
}
983
1007
}
984
- pp = ax25_get_nextp (pp );
1008
+ }
1009
+ pp = ax25_get_nextp (pp );
985
1010
}
986
1011
987
1012
dw_mutex_unlock (& tq_mutex );
988
1013
989
- #if DEBUG
1014
+ #if DEBUG2
990
1015
text_color_set (DW_COLOR_DEBUG );
991
1016
dw_printf ("tq_count(%d, %d, \"%s\", \"%s\", %d) returns %d\n" , chan , prio , source , dest , bytes , n );
992
1017
#endif
0 commit comments