Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion generated/mailparse.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ function mailparse_msg_free($mimemail): void
*
* @param string $filename Path to the file holding the message.
* The file is opened and streamed through the parser.
*
* The message contained in filename is supposed to end with a newline
* (CRLF); otherwise the last line of the message will not be parsed.
* @return resource Returns a MIME resource representing the structure.
* @throws MailparseException
*
Expand All @@ -88,7 +91,8 @@ function mailparse_msg_parse_file(string $filename)
* than read and parse the whole thing.
*
* @param resource $mimemail A valid MIME resource.
* @param string $data
* @param string $data The final chunk of data is supposed to end with a newline
* (CRLF); otherwise the last line of the message will not be parsed.
* @throws MailparseException
*
*/
Expand Down
2 changes: 2 additions & 0 deletions generated/network.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ function closelog(): void
* between platforms, DNS_ANY will not
* always return every record, the slower DNS_ALL
* will collect all records more reliably.
*
* DNS_CAA is not supported on Windows.
* @param array|null $authns Passed by reference and, if given, will be populated with Resource
* Records for the Authoritative Name Servers.
* @param array|null $addtl Passed by reference and, if given, will be populated with any
Expand Down