summaryrefslogtreecommitdiffstats
path: root/test/test_udp.py
AgeCommit message (Expand)AuthorFilesLines
2019-06-18fib: fib api updatesNeale Ranns1-30/+35
2019-05-16tests: refactor. Replace literal constant w/ named constant.Paul Vinciguerra1-10/+12
2019-04-10Tests Cleanup: Fix missing calls to setUpClass/tearDownClass.Paul Vinciguerra1-0/+12
2019-03-28Typos. A bunch of typos I've been collecting.Paul Vinciguerra1-1/+1
2019-03-11Tests: use self.assertNotIn().Paul Vinciguerra1-2/+2
2019-03-04test framework: Fix wrapper functions to match API message names.Ole Troan1-4/+4
2019-03-01Tests: Remove all wildcard imports.Paul Vinciguerra1-1/+1
2018-09-20UDP-Encap: name counters for the stats segmentNeale Ranns1-8/+13
2018-08-10Use IP address types on UDP encap APINeale Ranns1-5/+10
2018-06-24Revert "Revert "make test: fix broken interfaces""Klement Sekera1-4/+4
2018-06-22Revert "make test: fix broken interfaces"Ole Troan1-4/+4
2018-06-22make test: fix broken interfacesKlement Sekera1-4/+4
2018-06-11udp: fix for multiple workers and add testFlorin Coras1-0/+74
2018-03-09MPLS Unifom modeNeale Ranns1-6/+6
2018-01-09test: consolidate the multiple versions of send_and_*Neale Ranns1-13/+5
2017-11-07UDP Encapsulation.Neale Ranns1-0/+235
* * 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. */ #ifndef included_ldp_h #define included_ldp_h #if (CLIB_DEBUG > 0) /* Set LDP_DEBUG 2 for connection debug, 3 for read/write debug output */ #define LDP_DEBUG_INIT 1 #else #define LDP_DEBUG_INIT 0 #endif #include <vppinfra/error.h> #include <vppinfra/types.h> #include <vcl/ldp_glibc_socket.h> #define LDP_ENV_DEBUG "LDP_DEBUG" #define LDP_ENV_APP_NAME "LDP_APP_NAME" #define LDP_ENV_SID_BIT "LDP_SID_BIT" #define LDP_ENV_TLS_CERT "LDP_TLS_CERT_FILE" #define LDP_ENV_TLS_KEY "LDP_TLS_KEY_FILE" #define LDP_ENV_TLS_TRANS "LDP_TRANSPARENT_TLS" #define LDP_SID_BIT_MIN 5 #define LDP_SID_BIT_MAX 30 #define LDP_APP_NAME_MAX 256 #endif /* included_ldp_h */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */