Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
tg
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
tg
Commits
0a78c370
Commit
0a78c370
authored
Sep 21, 2014
by
vvaltman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes for libevent 1.4
parent
0200b514
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
event-old.h
event-old.h
+16
-0
No files found.
event-old.h
View file @
0a78c370
#ifndef __EVENT_OLD_H__
#define __EVENT_OLD_H__
#include <assert.h>
#define BEV_EVENT_READ EVBUFFER_READ
#define BEV_EVENT_WRITE EVBUFFER_WRITE
#define BEV_EVENT_EOF EVBUFFER_EOF
#define BEV_EVENT_ERROR EVBUFFER_ERROR
#define BEV_EVENT_TIMEOUT EVBUFFER_TIMEOUT
typedef
int
evutil_socket_t
;
static
inline
struct
event
*
event_new
(
struct
event_base
*
base
,
int
fd
,
int
what
,
void
(
*
callback
)(
int
,
short
,
void
*
),
void
*
arg
)
__attribute__
((
unused
));
...
...
@@ -24,4 +32,12 @@ static void event_free (struct event *ev) {
event_del
(
ev
);
free
(
ev
);
}
static
struct
bufferevent
*
bufferevent_socket_new
(
struct
event_base
*
base
,
int
fd
,
int
flags
)
__attribute__
((
unused
));
static
struct
bufferevent
*
bufferevent_socket_new
(
struct
event_base
*
base
,
int
fd
,
int
flags
)
{
assert
(
!
flags
);
struct
bufferevent
*
bev
=
bufferevent_new
(
fd
,
0
,
0
,
0
,
0
);
bufferevent_base_set
(
base
,
bev
);
return
bev
;
}
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment