(maint) Fixes common spelling error

* minumum minimum
* remaing remaining
* Mismaching Mismatching
This commit is contained in:
Sebastien Badia 2020-04-28 10:53:16 +02:00
parent 84082b35b1
commit 745de1082a
No known key found for this signature in database
GPG key ID: 8716CE4614A452D8
7 changed files with 10 additions and 10 deletions

View file

@ -61,7 +61,7 @@
#define MP_END 0x40 // This value is used when (e)nd bit is set in MP header
#define MP_BOTH_BITS 0xC0 // This value is used when both bits (begin and end) are set in MP header
#define MINFRAGLEN 64 // Minumum fragment length
#define MINFRAGLEN 64 // minimum fragment length
#define MAXFRAGLEN 1496 // Maximum length for Multilink fragment (The multilink may contain only one link)
#define MAXFRAGNUM 512 // Maximum number of Multilink fragment in a bundle (must be in the form of 2^X)
// it's not expected to have a space for more than 10 unassembled packets = 10 * MAXBUNDLESES
@ -374,7 +374,7 @@ typedef struct
uint16_t re_frame_len; // The reassembled frame length
uint16_t re_frame_begin_index, re_frame_end_index; // reassembled frame begin index, end index respectively
uint16_t start_index, end_index; // start and end sequence numbers available on the fragments array respectively
uint32_t M; // Minumum frame sequence number received over all bundle members
uint32_t M; // minimum frame sequence number received over all bundle members
uint32_t start_seq; // Last received frame sequence number (bearing B bit)
}
fragmentationt;