Skip to content

Commit

Permalink
ngx_event_accept 1.10 udp
Browse files Browse the repository at this point in the history
  • Loading branch information
chronolaw committed May 19, 2016
1 parent 4a76814 commit b9547aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions nginx/src/event/ngx_event.h
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,7 @@ extern ngx_module_t ngx_event_core_module;
void ngx_event_accept(ngx_event_t *ev);

#if !(NGX_WIN32)
// 1.10新增函数,接受udp连接的handler
void ngx_event_recvmsg(ngx_event_t *ev);
#endif

Expand Down
2 changes: 1 addition & 1 deletion nginx/src/event/ngx_event_accept.c
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ ngx_event_accept(ngx_event_t *ev)

#if !(NGX_WIN32)

// 1.10新增函数
// 1.10新增函数,接受udp连接的handler
void
ngx_event_recvmsg(ngx_event_t *ev)
{
Expand Down

0 comments on commit b9547aa

Please sign in to comment.