diff options
author | Aloys Augustin <aloaugus@cisco.com> | 2019-04-23 17:18:38 +0200 |
---|---|---|
committer | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2019-05-03 14:10:18 +0200 |
commit | de38b387297ae06a47b61859d10135467c60fc13 (patch) | |
tree | 29135737cec2e9154b9157c94028f282ed82c56b /src/vnet/udp/udp.c | |
parent | 1d1985de91833a5483a6b7ee96ef4090d530a7a6 (diff) |
Add packet headers in UDPC fifos
This change adds packet headers for each packet in a UDPC connection. This
changes the semantic of UDPC from an unreliable, unordered stream of bytes to an
unreliable, unordered sequence of packets.
Change-Id: I831e43903870a5720d26daa6e971299d03b208d7
Signed-off-by: Aloys Augustin <aloaugus@cisco.com>
Diffstat (limited to 'src/vnet/udp/udp.c')
-rw-r--r-- | src/vnet/udp/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/udp/udp.c b/src/vnet/udp/udp.c index 138fe578a01..4178a49c4db 100644 --- a/src/vnet/udp/udp.c +++ b/src/vnet/udp/udp.c @@ -380,7 +380,7 @@ const static transport_proto_vft_t udpc_proto = { .format_connection = format_udp_session, .format_half_open = format_udp_half_open_session, .format_listener = format_udp_listener_session, - .tx_type = TRANSPORT_TX_DEQUEUE, + .tx_type = TRANSPORT_TX_DGRAM, .service_type = TRANSPORT_SERVICE_CL, }; /* *INDENT-ON* */ |