Introducing websocket support in router and libunit.
This commit is contained in:
27
src/nxt_unit_websocket.h
Normal file
27
src/nxt_unit_websocket.h
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
/*
|
||||
* Copyright (C) NGINX, Inc.
|
||||
*/
|
||||
|
||||
#ifndef _NXT_UNIT_WEBSOCKET_H_INCLUDED_
|
||||
#define _NXT_UNIT_WEBSOCKET_H_INCLUDED_
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
#include "nxt_unit_typedefs.h"
|
||||
#include "nxt_websocket_header.h"
|
||||
|
||||
|
||||
struct nxt_unit_websocket_frame_s {
|
||||
nxt_unit_request_info_t *req;
|
||||
|
||||
uint64_t payload_len;
|
||||
nxt_websocket_header_t *header;
|
||||
uint8_t *mask;
|
||||
|
||||
nxt_unit_buf_t *content_buf;
|
||||
uint64_t content_length;
|
||||
};
|
||||
|
||||
|
||||
#endif /* _NXT_UNIT_WEBSOCKET_H_INCLUDED_ */
|
||||
Reference in New Issue
Block a user