mirror of
https://github.com/wangyu-/UDPspeeder.git
synced 2025-01-31 12:19:35 +08:00
disable mtu warn
This commit is contained in:
parent
4cba1d36de
commit
c0ab4c1ee8
@ -574,10 +574,13 @@ int fec_decode_manager_t::input(char *s,int len)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//mylog(log_info,"mp.size()=%d index=%d\n",mp.size(),index);
|
||||||
|
|
||||||
if(fec_data[index].used!=0)
|
if(fec_data[index].used!=0)
|
||||||
{
|
{
|
||||||
u32_t tmp_seq=fec_data[index].seq;
|
u32_t tmp_seq=fec_data[index].seq;
|
||||||
anti_replay.set_invaild(tmp_seq);
|
anti_replay.set_invaild(tmp_seq);
|
||||||
|
|
||||||
if(mp.find(tmp_seq)!=mp.end())
|
if(mp.find(tmp_seq)!=mp.end())
|
||||||
{
|
{
|
||||||
mp.erase(tmp_seq);
|
mp.erase(tmp_seq);
|
||||||
|
@ -167,19 +167,19 @@ class fec_decode_manager_t
|
|||||||
{
|
{
|
||||||
anti_replay_t anti_replay;
|
anti_replay_t anti_replay;
|
||||||
fec_data_t *fec_data;
|
fec_data_t *fec_data;
|
||||||
int index;
|
|
||||||
unordered_map<u32_t, fec_group_t> mp;
|
unordered_map<u32_t, fec_group_t> mp;
|
||||||
blob_decode_t blob_decode;
|
blob_decode_t blob_decode;
|
||||||
|
|
||||||
|
int index;
|
||||||
|
|
||||||
int output_n;
|
int output_n;
|
||||||
char ** output_s_arr;
|
char ** output_s_arr;
|
||||||
int * output_len_arr;
|
int * output_len_arr;
|
||||||
char *output_s_arr_buf[max_fec_packet_num+100];
|
|
||||||
int output_len_arr_buf[max_fec_packet_num+100];
|
|
||||||
int ready_for_output;
|
int ready_for_output;
|
||||||
|
|
||||||
|
char *output_s_arr_buf[max_fec_packet_num+100];//only for type=1,for type=0 the buf inside blot_t is used
|
||||||
|
int output_len_arr_buf[max_fec_packet_num+100];//same
|
||||||
|
|
||||||
public:
|
public:
|
||||||
fec_decode_manager_t()
|
fec_decode_manager_t()
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user