@@ -372,7 +372,7 @@ packet_t ax25_from_text (char *monitor, int strict)
372
372
/*
373
373
* Tearing it apart is destructive so make our own copy first.
374
374
*/
375
- char stuff [512 ];
375
+ char stuff [AX25_MAX_PACKET_LEN + 1 ];
376
376
char * pinfo ;
377
377
378
378
int ssid_temp , heard_temp ;
@@ -1717,6 +1717,19 @@ int ax25_get_info (packet_t this_p, unsigned char **paddr)
1717
1717
} /* end ax25_get_info */
1718
1718
1719
1719
1720
+ void ax25_set_info (packet_t this_p , unsigned char * new_info_ptr , int new_info_len )
1721
+ {
1722
+ unsigned char * old_info_ptr ;
1723
+ int old_info_len = ax25_get_info (this_p , & old_info_ptr );
1724
+ this_p -> frame_len -= old_info_len ;
1725
+
1726
+ if (new_info_len < 0 ) new_info_len = 0 ;
1727
+ if (new_info_len > AX25_MAX_INFO_LEN ) new_info_len = AX25_MAX_INFO_LEN ;
1728
+ memcpy (old_info_ptr , new_info_ptr , new_info_len );
1729
+ this_p -> frame_len += new_info_len ;
1730
+ }
1731
+
1732
+
1720
1733
/*------------------------------------------------------------------------------
1721
1734
*
1722
1735
* Name: ax25_cut_at_crlf
@@ -1892,6 +1905,25 @@ void ax25_set_modulo (packet_t this_p, int modulo)
1892
1905
}
1893
1906
1894
1907
1908
+ /*------------------------------------------------------------------------------
1909
+ *
1910
+ * Name: ax25_get_modulo
1911
+ *
1912
+ * Purpose: Get modulo value for I and S frame sequence numbers.
1913
+ *
1914
+ * Returns: 8 or 128 if known.
1915
+ * 0 if unknown.
1916
+ *
1917
+ *------------------------------------------------------------------------------*/
1918
+
1919
+ int ax25_get_modulo (packet_t this_p )
1920
+ {
1921
+ assert (this_p -> magic1 == MAGIC );
1922
+ assert (this_p -> magic2 == MAGIC );
1923
+
1924
+ return (this_p -> modulo );
1925
+ }
1926
+
1895
1927
1896
1928
1897
1929
@@ -2598,6 +2630,15 @@ int ax25_get_frame_len (packet_t this_p)
2598
2630
} /* end ax25_get_frame_len */
2599
2631
2600
2632
2633
+ unsigned char * ax25_get_frame_data_ptr (packet_t this_p )
2634
+ {
2635
+ assert (this_p -> magic1 == MAGIC );
2636
+ assert (this_p -> magic2 == MAGIC );
2637
+
2638
+ return (this_p -> frame_data );
2639
+
2640
+ } /* end ax25_get_frame_data_ptr */
2641
+
2601
2642
2602
2643
/*------------------------------------------------------------------------------
2603
2644
*
0 commit comments