From 64106c4d3d4ddba8c7bc2af75376e6d3d3d75601 Mon Sep 17 00:00:00 2001 From: Date: Mon, 29 Jun 2015 20:16:15 +0000 Subject: Update documentation --- libc/funcs/bsd43/fn.accept.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.bind.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.connect.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.freeifaddrs.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.getifaddrs.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.getpeername.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.getsockname.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.listen.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.recv.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.recvfrom.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.send.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.sendto.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.setsockopt.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.shutdown.html | 101 ++++++++++++++++ libc/funcs/bsd43/fn.socket.html | 101 ++++++++++++++++ libc/funcs/bsd43/index.html | 222 +++++++++++++++++++++++++++++++++++ libc/funcs/bsd43/sidebar-items.js | 1 + 17 files changed, 1738 insertions(+) create mode 100644 libc/funcs/bsd43/fn.accept.html create mode 100644 libc/funcs/bsd43/fn.bind.html create mode 100644 libc/funcs/bsd43/fn.connect.html create mode 100644 libc/funcs/bsd43/fn.freeifaddrs.html create mode 100644 libc/funcs/bsd43/fn.getifaddrs.html create mode 100644 libc/funcs/bsd43/fn.getpeername.html create mode 100644 libc/funcs/bsd43/fn.getsockname.html create mode 100644 libc/funcs/bsd43/fn.listen.html create mode 100644 libc/funcs/bsd43/fn.recv.html create mode 100644 libc/funcs/bsd43/fn.recvfrom.html create mode 100644 libc/funcs/bsd43/fn.send.html create mode 100644 libc/funcs/bsd43/fn.sendto.html create mode 100644 libc/funcs/bsd43/fn.setsockopt.html create mode 100644 libc/funcs/bsd43/fn.shutdown.html create mode 100644 libc/funcs/bsd43/fn.socket.html create mode 100644 libc/funcs/bsd43/index.html create mode 100644 libc/funcs/bsd43/sidebar-items.js (limited to 'libc/funcs/bsd43') diff --git a/libc/funcs/bsd43/fn.accept.html b/libc/funcs/bsd43/fn.accept.html new file mode 100644 index 0000000..6755a3b --- /dev/null +++ b/libc/funcs/bsd43/fn.accept.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::accept - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::accept + + [] + + [src]

+
pub unsafe extern "system" fn accept(socket: c_int, address: *mut sockaddr, address_len: *mut socklen_t) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.bind.html b/libc/funcs/bsd43/fn.bind.html new file mode 100644 index 0000000..2d89902 --- /dev/null +++ b/libc/funcs/bsd43/fn.bind.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::bind - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::bind + + [] + + [src]

+
pub unsafe extern "system" fn bind(socket: c_int, address: *const sockaddr, address_len: socklen_t) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.connect.html b/libc/funcs/bsd43/fn.connect.html new file mode 100644 index 0000000..8764637 --- /dev/null +++ b/libc/funcs/bsd43/fn.connect.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::connect - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::connect + + [] + + [src]

+
pub unsafe extern "system" fn connect(socket: c_int, address: *const sockaddr, len: socklen_t) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.freeifaddrs.html b/libc/funcs/bsd43/fn.freeifaddrs.html new file mode 100644 index 0000000..301c5b9 --- /dev/null +++ b/libc/funcs/bsd43/fn.freeifaddrs.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::freeifaddrs - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::freeifaddrs + + [] + + [src]

+
pub unsafe extern "system" fn freeifaddrs(ifa: *mut ifaddrs)
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.getifaddrs.html b/libc/funcs/bsd43/fn.getifaddrs.html new file mode 100644 index 0000000..72ac651 --- /dev/null +++ b/libc/funcs/bsd43/fn.getifaddrs.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::getifaddrs - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::getifaddrs + + [] + + [src]

+
pub unsafe extern "system" fn getifaddrs(ifap: *mut *mut ifaddrs) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.getpeername.html b/libc/funcs/bsd43/fn.getpeername.html new file mode 100644 index 0000000..44e058c --- /dev/null +++ b/libc/funcs/bsd43/fn.getpeername.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::getpeername - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::getpeername + + [] + + [src]

+
pub unsafe extern "system" fn getpeername(socket: c_int, address: *mut sockaddr, address_len: *mut socklen_t) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.getsockname.html b/libc/funcs/bsd43/fn.getsockname.html new file mode 100644 index 0000000..a0fad51 --- /dev/null +++ b/libc/funcs/bsd43/fn.getsockname.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::getsockname - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::getsockname + + [] + + [src]

+
pub unsafe extern "system" fn getsockname(socket: c_int, address: *mut sockaddr, address_len: *mut socklen_t) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.listen.html b/libc/funcs/bsd43/fn.listen.html new file mode 100644 index 0000000..b9f233f --- /dev/null +++ b/libc/funcs/bsd43/fn.listen.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::listen - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::listen + + [] + + [src]

+
pub unsafe extern "system" fn listen(socket: c_int, backlog: c_int) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.recv.html b/libc/funcs/bsd43/fn.recv.html new file mode 100644 index 0000000..69c6ffb --- /dev/null +++ b/libc/funcs/bsd43/fn.recv.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::recv - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::recv + + [] + + [src]

+
pub unsafe extern "system" fn recv(socket: c_int, buf: *mut c_void, len: size_t, flags: c_int) -> ssize_t
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.recvfrom.html b/libc/funcs/bsd43/fn.recvfrom.html new file mode 100644 index 0000000..fe9e14b --- /dev/null +++ b/libc/funcs/bsd43/fn.recvfrom.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::recvfrom - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::recvfrom + + [] + + [src]

+
pub unsafe extern "system" fn recvfrom(socket: c_int, buf: *mut c_void, len: size_t, flags: c_int, addr: *mut sockaddr, addrlen: *mut socklen_t) -> ssize_t
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.send.html b/libc/funcs/bsd43/fn.send.html new file mode 100644 index 0000000..024deb7 --- /dev/null +++ b/libc/funcs/bsd43/fn.send.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::send - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::send + + [] + + [src]

+
pub unsafe extern "system" fn send(socket: c_int, buf: *const c_void, len: size_t, flags: c_int) -> ssize_t
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.sendto.html b/libc/funcs/bsd43/fn.sendto.html new file mode 100644 index 0000000..40ae1bc --- /dev/null +++ b/libc/funcs/bsd43/fn.sendto.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::sendto - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::sendto + + [] + + [src]

+
pub unsafe extern "system" fn sendto(socket: c_int, buf: *const c_void, len: size_t, flags: c_int, addr: *const sockaddr, addrlen: socklen_t) -> ssize_t
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.setsockopt.html b/libc/funcs/bsd43/fn.setsockopt.html new file mode 100644 index 0000000..9024da9 --- /dev/null +++ b/libc/funcs/bsd43/fn.setsockopt.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::setsockopt - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::setsockopt + + [] + + [src]

+
pub unsafe extern "system" fn setsockopt(socket: c_int, level: c_int, name: c_int, value: *const c_void, option_len: socklen_t) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.shutdown.html b/libc/funcs/bsd43/fn.shutdown.html new file mode 100644 index 0000000..b4f7d16 --- /dev/null +++ b/libc/funcs/bsd43/fn.shutdown.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::shutdown - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::shutdown + + [] + + [src]

+
pub unsafe extern "system" fn shutdown(socket: c_int, how: c_int) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/fn.socket.html b/libc/funcs/bsd43/fn.socket.html new file mode 100644 index 0000000..e6664ec --- /dev/null +++ b/libc/funcs/bsd43/fn.socket.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::bsd43::socket - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::bsd43::socket + + [] + + [src]

+
pub unsafe extern "system" fn socket(domain: c_int, ty: c_int, protocol: c_int) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/index.html b/libc/funcs/bsd43/index.html new file mode 100644 index 0000000..a0d4c98 --- /dev/null +++ b/libc/funcs/bsd43/index.html @@ -0,0 +1,222 @@ + + + + + + + + + + libc::funcs::bsd43 - Rust + + + + + + + + + + + + + + + +
+

Module libc::funcs::bsd43 + + [] + + [src]

+

Functions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
accept + +
bind + +
connect + +
freeifaddrs + +
getifaddrs + +
getpeername + +
getsockname + +
listen + +
recv + +
recvfrom + +
send + +
sendto + +
setsockopt + +
shutdown + +
socket + +
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/bsd43/sidebar-items.js b/libc/funcs/bsd43/sidebar-items.js new file mode 100644 index 0000000..9475256 --- /dev/null +++ b/libc/funcs/bsd43/sidebar-items.js @@ -0,0 +1 @@ +initSidebarItems({"fn":[["accept",""],["bind",""],["connect",""],["freeifaddrs",""],["getifaddrs",""],["getpeername",""],["getsockname",""],["listen",""],["recv",""],["recvfrom",""],["send",""],["sendto",""],["setsockopt",""],["shutdown",""],["socket",""]]}); \ No newline at end of file -- cgit v1.2.3