summaryrefslogtreecommitdiffstats
path: root/src/vnet/tcp/tcp_bt.c
AgeCommit message (Expand)AuthorFilesLines
2020-12-14misc: move to new pool_foreach macrosDamjan Marion1-2/+2
2020-10-26tcp: byte tracker fixRyujiro Shibuya1-1/+5
2020-10-13tcp: fix bt acked_sacked on recoveryFlorin Coras1-2/+3
2020-04-22tcp: avoid bt sample access after possible pool reallocFlorin Coras1-6/+6
2020-04-22tcp: fix use-after-freeBenoƮt Ganne1-1/+5
2020-04-02tcp: move features to separate filesFlorin Coras1-0/+2
2020-03-23tcp: add lost and in flight to byte trackerFlorin Coras1-1/+8
2020-02-20tcp: fix coverity warning in btFlorin Coras1-1/+1
2019-10-31tcp: track lost rxt segments in byte trackerFlorin Coras1-0/+4
2019-10-23tcp: improve rate samples for retansmitted segmentsFlorin Coras1-67/+162
2019-09-18tcp: compute snd time for rate sampleFlorin Coras1-4/+9
2019-08-23tcp: fix byte tracker samples flushFlorin Coras1-0/+1
2019-07-10tcp: improve rate estimateFlorin Coras1-5/+12
2019-06-25tcp: delivery rate estimatorFlorin Coras1-0/+586
0; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
/*
 * unittest.c - vpp unit-test plugin
 *
 * Copyright (c) 2018 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <vnet/vnet.h>
#include <vnet/plugin/plugin.h>
#include <vpp/app/version.h>

/* *INDENT-OFF* */
VLIB_PLUGIN_REGISTER () =
{
  .version = VPP_BUILD_VER,
  .description = "C unit tests",
  .default_disabled = 1,
};
/* *INDENT-ON* */

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */