Merge pull request #9380 from zapashcanon/unixdoc

Unixdoc
master
Florian Angeletti 2020-03-20 10:56:53 +01:00 committed by GitHub
commit 8e23a03449
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1324,7 +1324,7 @@ type socket_type =
type sockaddr =
ADDR_UNIX of string
| ADDR_INET of inet_addr * int
| ADDR_INET of inet_addr * int (**)
(** The type of socket addresses. [ADDR_UNIX name] is a socket
address in the Unix domain; [name] is a file name in the file
system. [ADDR_INET(addr,port)] is a socket address in the Internet
@ -1389,7 +1389,7 @@ val getpeername : file_descr -> sockaddr
type msg_flag =
MSG_OOB
| MSG_DONTROUTE
| MSG_PEEK
| MSG_PEEK (**)
(** The flags for {!Unix.recv}, {!Unix.recvfrom},
{!Unix.send} and {!Unix.sendto}. *)

View File

@ -1071,7 +1071,7 @@ type socket_type = Unix.socket_type =
type sockaddr = Unix.sockaddr =
ADDR_UNIX of string
| ADDR_INET of inet_addr * int
| ADDR_INET of inet_addr * int (**)
(** The type of socket addresses. [ADDR_UNIX name] is a socket
address in the Unix domain; [name] is a file name in the file
system. [ADDR_INET(addr,port)] is a socket address in the Internet
@ -1131,7 +1131,7 @@ val getpeername : file_descr -> sockaddr
type msg_flag = Unix.msg_flag =
MSG_OOB
| MSG_DONTROUTE
| MSG_PEEK
| MSG_PEEK (**)
(** The flags for {!UnixLabels.recv}, {!UnixLabels.recvfrom},
{!UnixLabels.send} and {!UnixLabels.sendto}. *)