summaryrefslogtreecommitdiffhomepage
path: root/src/nginext/nxt_go_lib.h
blob: 1c7f61c02b76bb24466275a6a71e346b508c4527 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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_ */