diff options
author | Keith Burns (alagalah) <alagalah@gmail.com> | 2018-02-23 10:17:01 -0800 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2018-03-05 18:57:10 +0000 |
commit | 3cf2d6403dd90083fe2c678c03565f6f483de9e3 (patch) | |
tree | 9e17bf84e49338b8b3abd3b64e0e69358c72408b /src/vcl.am | |
parent | c7fe4f39bca709a9ca094ffd4465490fa780a576 (diff) |
VCL async event handler
- provides async handling of events such as accept/connect
Change-Id: Id95947237ef16629371b3c99822059d423e2f918
Signed-off-by: Keith Burns (alagalah) <alagalah@gmail.com>
Diffstat (limited to 'src/vcl.am')
-rw-r--r-- | src/vcl.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vcl.am b/src/vcl.am index 5f48f6df168..9f1325ecaa2 100644 --- a/src/vcl.am +++ b/src/vcl.am @@ -22,6 +22,7 @@ libvppcom_la_DEPENDENCIES = \ libvppcom_la_LIBADD = $(libvppcom_la_DEPENDENCIES) -lpthread -lrt -ldl libvppcom_la_SOURCES += \ + vcl/vcl_event.c \ vcl/vppcom.c \ $(libvppinfra_la_SOURCES) \ $(libvlib_la_SOURCES) \ @@ -29,6 +30,7 @@ libvppcom_la_SOURCES += \ $(libvlibmemoryclient_la_SOURCES) nobase_include_HEADERS += \ + vcl/vcl_event.h \ vcl/vppcom.h libvcl_ldpreload_la_LIBADD = $(libvppcom_la_DEPENDENCIES) -lpthread -lrt -ldl |