summaryrefslogtreecommitdiffstats
path: root/src/vcl/vcl_private.h
AgeCommit message (Expand)AuthorFilesLines
2020-04-03session udp: fix transport flags and migrationFlorin Coras1-1/+1
2020-04-01session udp: support connect on listenersFlorin Coras1-0/+6
2020-04-01vcl: support sendto for dgramsFlorin Coras1-0/+19
2020-03-27vcl: support for uword segmentsFlorin Coras1-2/+2
2020-03-06vcl: refactor vls to minimize lock usageFlorin Coras1-1/+2
2020-02-14vcl: fix ldp read on closing sessionFlorin Coras1-2/+2
2020-02-13vcl: clear accept msg flagsFlorin Coras1-1/+0
2020-02-13vcl: handle close after resetFlorin Coras1-1/+1
2020-02-06vcl: fix session closing errorFlorin Coras1-1/+2
2020-02-04vcl: switch to closed state after app closeFlorin Coras1-1/+1
2020-01-30vcl session: propagate cleanup notifications to appsFlorin Coras1-0/+1
2020-01-16vcl: add rx event on epoll ctl if neededFlorin Coras1-0/+8
2019-12-21session: move add/del segment msg to mqFlorin Coras1-0/+4
2019-12-11vcl: separate binary api connections per thread workerFlorin Coras1-0/+4
2019-10-22vcl: add config option for preferred tls engineFlorin Coras1-0/+1
2019-08-30vcl: initialize ctrl_mq in workersFlorin Coras1-0/+3
2019-08-27session: move ctrl messages from bapi to mqFlorin Coras1-3/+6
2019-08-05vcl: fix bapi disconnect with socket transportFlorin Coras1-0/+1
2019-07-19session: Use parent_handle instead of transport_optsNathan Skrzypczak1-1/+1
2019-07-18vcl: add QUIC supportNathan Skrzypczak1-1/+27
2019-07-18session: Refactor invalid session idx/handleNathan Skrzypczak1-0/+1
2019-06-06vcl: avoid hash table lookup on acceptFlorin Coras1-1/+0
2019-05-16Add transport_opts to connect_sock bapiNathan Skrzypczak1-0/+1
2019-04-25session: cleanup segment manager and fifo segmentFlorin Coras1-1/+1
2019-03-15vcl: cleanup debug messagesFlorin Coras1-1/+1
2019-03-06session: use vpp to switch io events for ct sessionsFlorin Coras1-27/+5
2019-03-04vcl: remove unused fields and structuresFlorin Coras1-17/+0
2019-02-21vcl/session: send unlisten over message queueFlorin Coras1-12/+6
2019-02-14Add -fno-common compile optionBenoƮt Ganne1-1/+1
2019-02-04session: cleanup part 1Florin Coras1-2/+2
2019-01-31vcl: improve handling of close on rwFlorin Coras1-0/+28
2019-01-30vls: support passive listenersFlorin Coras1-10/+17
2019-01-29vls: multi-process and multi-threaded apps improvementsFlorin Coras1-0/+3
2019-01-18vcl: move forking logic to vlsFlorin Coras1-6/+14
2019-01-08vcl/ldp: select cleanup/improvementsFlorin Coras1-0/+5
2019-01-07vcl/ldp: add locked sessions shim layerFlorin Coras1-0/+3
2019-01-05vcl/session: add api for changing session app workerFlorin Coras1-5/+19
2019-01-04Add TLS support for VCLPing Yu1-0/+5
2019-01-02Fixes for buliding for 32bit targets:David Johnson1-2/+2
2018-12-17vcl/session: handle reset/disconnect before app acceptFlorin Coras1-3/+8
2018-12-04vcl: cleanup children that use _exit()Florin Coras1-2/+14
2018-12-03vcl: handle worker process exitFlorin Coras1-1/+1
2018-12-03svm: use explicit svm fifo segment main for slavesFlorin Coras1-0/+2
2018-11-30vcl: wait for segments with segment handleFlorin Coras1-3/+14
2018-11-29vcl: basic support for apps that forkFlorin Coras1-9/+29
2018-11-21session: cleanup use of api_client_indexFlorin Coras1-2/+2
2018-11-18vcl/session: apps with process workersFlorin Coras1-2/+17
2018-10-16vcl: fix bidirectional tests (VPP-1455)Florin Coras1-0/+1
2018-09-22vcl: remove vcl_eventFlorin Coras1-8/+0
2018-09-14vcl: keep track of unexpected eventsFlorin Coras1-0/+3
; i++) v[i] = i; } else if (unformat (input, "hex 0x%U", unformat_hex_string, &v)) ; else if (unformat (input, "%U", unformat_vlib_node, vm, &node_index)) { pg_node_t *pn = pg_get_node (node_index); if (!pn->unformat_edit) return 0; return unformat (input, "%U", pn->unformat_edit, s); } else return 0; /* Length not including this payload. */ max_len = pg_edit_group_n_bytes (s, 0); if (max_len + vec_len (v) >= s->max_packet_bytes) { if (s->max_packet_bytes >= max_len) _vec_len (v) = s->max_packet_bytes - max_len; else _vec_len (v) = 0; } e = pg_create_edit_group (s, sizeof (e[0]), vec_len (v), 0); e->type = PG_EDIT_FIXED; e->n_bits = vec_len (v) * BITS (v[0]); /* Least significant bit is at end of bitstream, since everything is always bigendian. */ e->lsb_bit_offset = e->n_bits - BITS (v[0]); e->values[PG_EDIT_LO] = v; return 1; } /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */