Skip to content

Commit 257d2e3

Browse files
committed
New get/set methods for packet object.
1 parent 1b3ed76 commit 257d2e3

File tree

2 files changed

+45
-1
lines changed

2 files changed

+45
-1
lines changed

src/ax25_pad.c

+42-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ packet_t ax25_from_text (char *monitor, int strict)
372372
/*
373373
* Tearing it apart is destructive so make our own copy first.
374374
*/
375-
char stuff[512];
375+
char stuff[AX25_MAX_PACKET_LEN+1];
376376
char *pinfo;
377377

378378
int ssid_temp, heard_temp;
@@ -1717,6 +1717,19 @@ int ax25_get_info (packet_t this_p, unsigned char **paddr)
17171717
} /* end ax25_get_info */
17181718

17191719

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+
17201733
/*------------------------------------------------------------------------------
17211734
*
17221735
* Name: ax25_cut_at_crlf
@@ -1892,6 +1905,25 @@ void ax25_set_modulo (packet_t this_p, int modulo)
18921905
}
18931906

18941907

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+
18951927

18961928

18971929

@@ -2598,6 +2630,15 @@ int ax25_get_frame_len (packet_t this_p)
25982630
} /* end ax25_get_frame_len */
25992631

26002632

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+
26012642

26022643
/*------------------------------------------------------------------------------
26032644
*

src/ax25_pad.h

+3
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,7 @@ extern int ax25_get_first_not_repeated(packet_t pp);
397397
extern int ax25_get_rr (packet_t this_p, int n);
398398

399399
extern int ax25_get_info (packet_t pp, unsigned char **paddr);
400+
extern void ax25_set_info (packet_t pp, unsigned char *info_ptr, int info_len);
400401
extern int ax25_cut_at_crlf (packet_t this_p);
401402

402403
extern void ax25_set_nextp (packet_t this_p, packet_t next_p);
@@ -409,6 +410,7 @@ extern void ax25_set_release_time (packet_t this_p, double release_time);
409410
extern double ax25_get_release_time (packet_t this_p);
410411

411412
extern void ax25_set_modulo (packet_t this_p, int modulo);
413+
extern int ax25_get_modulo (packet_t this_p);
412414

413415
extern void ax25_format_addrs (packet_t pp, char *);
414416
extern void ax25_format_via_path (packet_t this_p, char *result, size_t result_size);
@@ -428,6 +430,7 @@ extern int ax25_get_c2 (packet_t this_p);
428430
extern int ax25_get_pid (packet_t this_p);
429431

430432
extern int ax25_get_frame_len (packet_t this_p);
433+
extern unsigned char *ax25_get_frame_data_ptr (packet_t this_p);
431434

432435
extern unsigned short ax25_dedupe_crc (packet_t pp);
433436

0 commit comments

Comments
 (0)