diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-06-23 19:20:08 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-06-23 19:20:08 +0300 |
commit | 4a1b59c27a8e85fc3b03c420fbc1642ce52e96cf (patch) | |
tree | c72ab253541c53dd918afc86973192416078fceb /src/nginext/nxt_go_lib.h | |
parent | 5a43bd0bfd1eaa60dede7beb3206a53e8d008fa4 (diff) | |
download | unit-4a1b59c27a8e85fc3b03c420fbc1642ce52e96cf.tar.gz unit-4a1b59c27a8e85fc3b03c420fbc1642ce52e96cf.tar.bz2 |
External Go app request processing.
Diffstat (limited to 'src/nginext/nxt_go_lib.h')
-rw-r--r-- | src/nginext/nxt_go_lib.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/nginext/nxt_go_lib.h b/src/nginext/nxt_go_lib.h new file mode 100644 index 00000000..1c7f61c0 --- /dev/null +++ b/src/nginext/nxt_go_lib.h @@ -0,0 +1,40 @@ + +/* + * Copyright (C) Max Romanov + * Copyright (C) NGINX, Inc. + */ + +#ifndef _NXT_GO_LIB_H_INCLUDED_ +#define _NXT_GO_LIB_H_INCLUDED_ + + +#include <stdint.h> +#include <stdlib.h> +#include <sys/types.h> + +typedef struct { + int length; + char *start; +} nxt_go_str_t; + +typedef uintptr_t nxt_go_request_t; + +int nxt_go_response_write(nxt_go_request_t r, void *buf, size_t len); + +int nxt_go_request_read(nxt_go_request_t r, off_t off, void *dst, + size_t dst_len); + +int nxt_go_request_read_from(nxt_go_request_t r, off_t off, void *dst, + size_t dst_len, void *src, size_t src_len); + +int nxt_go_request_close(nxt_go_request_t r); + +int nxt_go_request_done(nxt_go_request_t r); + +void nxt_go_listen_and_serve(); + +nxt_go_request_t nxt_go_process_port_msg(void *buf, size_t buf_len, + void *oob, size_t oob_len); + + +#endif /* _NXT_GO_LIB_H_INCLUDED_ */ |