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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
use std::os::raw::{c_char, c_int, c_void};
pub enum BrpcServer {}
pub enum BrpcServerOptions {}
pub enum BrpcChannel {}
pub enum BrpcChannelOptions {}
pub enum BrpcController {}
pub enum BrpcIOBuf {}
#[allow(dead_code)]
extern "C" {
pub fn brpc_is_asked_to_quit() -> c_int;
pub fn brpc_server_new() -> *mut BrpcServer;
pub fn brpc_server_destroy(server: *mut BrpcServer);
pub fn brpc_server_add_service(
server: *mut BrpcServer,
service: *mut c_void,
ownership: c_int,
) -> c_int;
pub fn brpc_server_start(
server: *mut BrpcServer,
port: c_int,
opt: *const BrpcServerOptions,
) -> c_int;
pub fn brpc_server_run_until_asked_to_quit(server: *mut BrpcServer);
pub fn brpc_server_options_new() -> *mut BrpcServerOptions;
pub fn brpc_server_options_destroy(server_options: *mut BrpcServerOptions);
pub fn brpc_server_options_set_idle_timeout_ms(
server_options: *mut BrpcServerOptions,
timeout: c_int,
);
pub fn brpc_channel_new() -> *mut BrpcChannel;
pub fn brpc_channel_destroy(channel: *mut BrpcChannel);
pub fn brpc_channel_init(
channel: *mut BrpcChannel,
server_addr_and_port: *const c_char,
options: *const BrpcChannelOptions,
) -> c_int;
pub fn brpc_channel_options_new() -> *mut BrpcChannelOptions;
pub fn brpc_channel_options_destroy(channel_options: *mut BrpcChannelOptions);
pub fn brpc_channel_options_set_timeout_ms(
channel_options: *mut BrpcChannelOptions,
timeout: c_int,
);
pub fn brpc_channel_options_set_max_retry(
channel_options: *mut BrpcChannelOptions,
max_retry: c_int,
);
pub fn brpc_controller_new() -> *mut BrpcController;
pub fn brpc_controller_destroy(cntl: *mut BrpcController);
pub fn brpc_controller_failed(cntl: *mut BrpcController) -> c_int;
pub fn brpc_controller_error_code(cntl: *mut BrpcController) -> c_int;
pub fn brpc_controller_set_failed(cntl: *mut BrpcController, code: c_int);
pub fn brpc_controller_get_request_attachment(cntl: *mut BrpcController) -> *mut BrpcIOBuf;
pub fn brpc_controller_get_response_attachment(cntl: *mut BrpcController) -> *mut BrpcIOBuf;
}