Add bind() to posix.cfg
This commit is contained in:
parent
5c91d7b4e1
commit
8f36b7d23b
|
@ -80,6 +80,22 @@
|
|||
<alloc>dlopen</alloc>
|
||||
<dealloc>dlclose</dealloc>
|
||||
</resource>
|
||||
<!-- int bind(int socket, const struct sockaddr *address, socklen_t address_len); -->
|
||||
<function name="bind">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="int"/>
|
||||
<leak-ignore/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2">
|
||||
<not-null/>
|
||||
<minsize type="argvalue" arg="3"/>
|
||||
</arg>
|
||||
<arg nr="3">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- int connect(int socket, const struct sockaddr *address, socklen_t address_len); -->
|
||||
<function name="connect">
|
||||
<noreturn>false</noreturn>
|
||||
|
|
Loading…
Reference in New Issue