forked from nginx/nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Core: the ngx_event_udp.h header file.
- Loading branch information
Showing
3 changed files
with
27 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
/* | ||
* Copyright (C) Nginx, Inc. | ||
*/ | ||
|
||
|
||
#ifndef _NGX_EVENT_UDP_H_INCLUDED_ | ||
#define _NGX_EVENT_UDP_H_INCLUDED_ | ||
|
||
|
||
#include <ngx_config.h> | ||
#include <ngx_core.h> | ||
|
||
|
||
#if !(NGX_WIN32) | ||
void ngx_event_recvmsg(ngx_event_t *ev); | ||
void ngx_udp_rbtree_insert_value(ngx_rbtree_node_t *temp, | ||
ngx_rbtree_node_t *node, ngx_rbtree_node_t *sentinel); | ||
#endif | ||
|
||
void ngx_delete_udp_connection(void *data); | ||
|
||
|
||
#endif /* _NGX_EVENT_UDP_H_INCLUDED_ */ |