diff options
author | Thomas Harning Jr <harningt@gmail.com> | 2007-11-20 15:36:38 -0500 |
---|---|---|
committer | Thomas Harning Jr <harningt@gmail.com> | 2007-11-20 15:36:38 -0500 |
commit | 7ea90f7537dc1e31b8f8c5ac3c248f246c287d90 (patch) | |
tree | 34ba62cd91f29a1f6a0a6d22af83700a0cfe090e | |
parent | ba4a358612ecafdaed144c32054575af9cb89da3 (diff) | |
download | luaevent-prosody-7ea90f7537dc1e31b8f8c5ac3c248f246c287d90.tar.gz luaevent-prosody-7ea90f7537dc1e31b8f8c5ac3c248f246c287d90.zip |
Added EV_SIGNAL and EV_PERSIST flags to the registered values
-rw-r--r-- | src/luaevent.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/luaevent.c b/src/luaevent.c index b1f57eb..b356c92 100644 --- a/src/luaevent.c +++ b/src/luaevent.c @@ -106,6 +106,8 @@ static namedInteger consts[] = { {"EV_READ", EV_READ}, {"EV_WRITE", EV_WRITE}, {"EV_TIMEOUT", EV_TIMEOUT}, + {"EV_SIGNAL", EV_SIGNAL}, + {"EV_PERSIST", EV_PERSIST}, /* bufferevent */ {"EVBUFFER_READ", EVBUFFER_READ}, {"EVBUFFER_WRITE", EVBUFFER_WRITE}, |