File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,16 @@ fn main() -> Result<()> {
90
90
. allowlist_function ( "sys_.*" )
91
91
. allowlist_function ( "z_log.*" )
92
92
. allowlist_function ( "bt_.*" )
93
+ . allowlist_function ( "zsock_.*" )
93
94
. allowlist_function ( "SEGGER.*" )
95
+ . allowlist_item ( "AF_.*" )
96
+ . allowlist_type ( "net_ip_protocol.*" )
97
+ . allowlist_type ( "net_sock_type" )
98
+ . allowlist_type ( "sockaddr.*" )
99
+ . allowlist_type ( "sa_family_t" )
100
+ . allowlist_type ( "socklen_t" )
101
+ . allowlist_type ( "in_addr" )
102
+ . allowlist_type ( "in6_addr" )
94
103
. allowlist_item ( "E.*" )
95
104
. allowlist_item ( "K_.*" )
96
105
. allowlist_item ( "ZR_.*" )
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ extern int errno;
43
43
#include <zephyr/bluetooth/bluetooth.h>
44
44
#include <zephyr/drivers/flash.h>
45
45
#include <zephyr/irq.h>
46
+ #include <zephyr/net/socket.h>
46
47
47
48
/*
48
49
* bindgen will only output #defined constants that resolve to simple numbers. These are some
You can’t perform that action at this time.
0 commit comments