(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

@ -251,7 +251,7 @@
= A master receiving a stray heartbeat sends a unicast HB back, which
should cause the rogue to die due to the tie-breaker code.
= Keep probing the master for late heartbeats.
= Drop BGP as soon as we become master with the minumum required peers.
= Drop BGP as soon as we become master with the minimum required peers.
= Any PING seen from a master forces an election (rather than just
where basetime is zero).
= A slave which receives a LASTSEEN message (presumably a restarted

View file

@ -369,7 +369,7 @@ from the master.
</LI>
<LI><B>cluster_master_min_adv</B> (int)<BR>
Determines the minumum number of up to date slaves required before the
Determines the minimum number of up to date slaves required before the
master will drop routes (default: 1).
</LI>

View file

@ -641,7 +641,7 @@ set boolean true
<term><literal>cluster_master_min_adv</literal> (int)</term>
<listitem>
<para>
Determines the minumum number of up to date slaves
Determines the minimum number of up to date slaves
required before the master will drop routes (default: 1).
</para>
</listitem>

View file

@ -216,7 +216,7 @@ Interval in tenths of a second between cluster heartbeat/pings.
Cluster heartbeat timeout in tenths of a second. A new master will be elected when this interval has been passed without seeing a heartbeat from the master.
.IP "\fBcluster_master_min_adv\fR (int)" 4
.IX Item "cluster_master_min_adv (int)"
Determines the minumum number of up to date slaves required before the master will drop routes (default: 1).
Determines the minimum number of up to date slaves required before the master will drop routes (default: 1).
.IP "\fBdebug\fR (int)" 4
.IX Item "debug (int)"
Set the level of debugging messages written to the log file. The value should

View file

@ -102,7 +102,7 @@ Cluster heartbeat timeout in tenths of a second. A new master will be elected wh
=item B<cluster_master_min_adv> (int)
Determines the minumum number of up to date slaves required before the master will drop routes (default: 1).
Determines the minimum number of up to date slaves required before the master will drop routes (default: 1).
=item B<debug> (int)

View file

@ -2170,7 +2170,7 @@ void sessionshutdown(sessionidt s, char const *reason, int cdn_result, int cdn_e
if(bundle[b].num_of_links == 0)
{
bundleclear(b);
LOG(3, s, session[s].tunnel, "MPPP: Kill bundle: %d (No remaing member links)\n",b);
LOG(3, s, session[s].tunnel, "MPPP: Kill bundle: %d (No remaining member links)\n",b);
}
else
{
@ -5713,8 +5713,8 @@ int sessionsetup(sessionidt s, tunnelidt t)
cluster_send_bundle(session[s].bundle);
else
{
LOG(0, s, t, "MPPP: Mismaching mssf option with other sessions in bundle\n");
sessionshutdown(s, "Mismaching mssf option.", CDN_NONE, TERM_SERVICE_UNAVAILABLE);
LOG(0, s, t, "MPPP: Mismatching mssf option with other sessions in bundle\n");
sessionshutdown(s, "Mismatching mssf option.", CDN_NONE, TERM_SERVICE_UNAVAILABLE);
return 0;
}
}

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;