1
0
mirror of https://github.com/php/doc-ja.git synced 2026-03-27 08:32:09 +01:00
Files
archived-doc-ja/reference/network/constants.xml
Satoru Yoshida 5356c7f2ab sync en
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@345033 c90b9560-bf6c-de11-be94-00142212c4b1
2018-05-19 10:15:46 +00:00

257 lines
8.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 8e637eb0a08f124c25c191820069f1a5f9d18d17 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: takagi -->
<appendix xml:id="network.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.constants;
&extension.constants.core;
<table>
<title><function>openlog</function>オプション</title>
<tgroup cols="2">
<thead>
<row>
<entry>定数</entry>
<entry>説明</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.log-cons">
<entry><constant>LOG_CONS</constant></entry>
<entry>
システムロガーにデータを送信する際にエラーが発生した場合、
システムコンソールに直接書き込む。
</entry>
</row>
<row xml:id="constant.log-ndelay">
<entry><constant>LOG_NDELAY</constant></entry>
<entry>
ロガーにただちに接続をオープンする。
</entry>
</row>
<row xml:id="constant.log-odelay">
<entry><constant>LOG_ODELAY</constant></entry>
<entry>
(デフォルト) 最初のメッセージが記録されるまで接続のオープンを
遅延させる。
</entry>
</row>
<row xml:id="constant.log-nowait">
<entry><constant>LOG_NOWAIT</constant></entry>
<entry>
</entry>
</row>
<row xml:id="constant.log-perror">
<entry><constant>LOG_PERROR</constant></entry>
<entry>標準エラー出力にもログメッセージを出力する</entry>
</row>
<row xml:id="constant.log-pid">
<entry><constant>LOG_PID</constant></entry>
<entry>各メッセージにプロセスIDを含める</entry>
</row>
</tbody>
</tgroup>
</table>
<table>
<title><function>openlog</function> ファシリティ</title>
<tgroup cols="2">
<thead>
<row>
<entry>定数</entry>
<entry>説明</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.log-auth">
<entry><constant>LOG_AUTH</constant></entry>
<entry>
セキュリティ/認証メッセージ(<constant>LOG_AUTHPRIV</constant>が定義されているシステムであれば
代わりにそれを使用してください)
</entry>
</row>
<row xml:id="constant.log-authpriv">
<entry><constant>LOG_AUTHPRIV</constant></entry>
<entry>セキュリティ/認証メッセージ (private)</entry>
</row>
<row xml:id="constant.log-cron">
<entry><constant>LOG_CRON</constant></entry>
<entry>時刻デーモン (cron and at)</entry>
</row>
<row xml:id="constant.log-daemon">
<entry><constant>LOG_DAEMON</constant></entry>
<entry>その他のシステムデーモン</entry>
</row>
<row xml:id="constant.log-kern">
<entry><constant>LOG_KERN</constant></entry>
<entry>カーネルメッセージ</entry>
</row>
<row xml:id="constant.log-local0">
<entry><constant>LOG_LOCAL0 ... LOG_LOCAL7</constant></entry>
<entry>ローカルで使用できるようリザーブされている。Windowsでは使用できない。</entry>
</row>
<row xml:id="constant.log-lpr">
<entry><constant>LOG_LPR</constant></entry>
<entry>ラインプリンタサブシステム</entry>
</row>
<row xml:id="constant.log-mail">
<entry><constant>LOG_MAIL</constant></entry>
<entry>メールサブシステム</entry>
</row>
<row xml:id="constant.log-news">
<entry><constant>LOG_NEWS</constant></entry>
<entry>USENETニュースサブシステム</entry>
</row>
<row xml:id="constant.log-syslog">
<entry><constant>LOG_SYSLOG</constant></entry>
<entry>syslogdによって内部で生成されたメッセージ</entry>
</row>
<row xml:id="constant.log-user">
<entry><constant>LOG_USER</constant></entry>
<entry>一般ユーザーレベルのメッセージ</entry>
</row>
<row xml:id="constant.log-uucp">
<entry><constant>LOG_UUCP</constant></entry>
<entry>UUCPサブシステム</entry>
</row>
</tbody>
</tgroup>
</table>
<table>
<title><function>syslog</function>プロパティ(降順)</title>
<tgroup cols="2">
<thead>
<row>
<entry>定数</entry>
<entry>説明</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.log-emerg">
<entry><constant>LOG_EMERG</constant></entry>
<entry>システムは使用不可</entry>
</row>
<row xml:id="constant.log-alert">
<entry><constant>LOG_ALERT</constant></entry>
<entry>アクションを直ちに起こすことが必要</entry>
</row>
<row xml:id="constant.log-crit">
<entry><constant>LOG_CRIT</constant></entry>
<entry>危機的な条件</entry>
</row>
<row xml:id="constant.log-err">
<entry><constant>LOG_ERR</constant></entry>
<entry>エラー条件</entry>
</row>
<row xml:id="constant.log-warning">
<entry><constant>LOG_WARNING</constant></entry>
<entry>警告条件</entry>
</row>
<row xml:id="constant.log-notice">
<entry><constant>LOG_NOTICE</constant></entry>
<entry>正常、しかし、注意すべき条件</entry>
</row>
<row xml:id="constant.log-info">
<entry><constant>LOG_INFO</constant></entry>
<entry>情報メッセージ</entry>
</row>
<row xml:id="constant.log-debug">
<entry><constant>LOG_DEBUG</constant></entry>
<entry>デバッグレベルメッセージ</entry>
</row>
</tbody>
</tgroup>
</table>
<table>
<title><function>dns_get_record</function>オプション</title>
<tgroup cols="2">
<thead>
<row>
<entry>定数</entry>
<entry>説明</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.dns-a">
<entry><constant>DNS_A</constant></entry>
<entry>IPv4アドレスリソース</entry>
</row>
<row xml:id="constant.dns-caa">
<entry><constant>DNS_CAA</constant></entry>
<entry>Certification Authority Authorizationリソース (PHP 7.0.16 および 7.1.2 以降で使用可能)</entry>
</row>
<row xml:id="constant.dns-mx">
<entry><constant>DNS_MX</constant></entry>
<entry>Mail Exchangerリソース</entry>
</row>
<row xml:id="constant.dns-cname">
<entry><constant>DNS_CNAME</constant></entry>
<entry>エイリアス(Canonical Name)リソース</entry>
</row>
<row xml:id="constant.dns-ns">
<entry><constant>DNS_NS</constant></entry>
<entry>Authoritative Name Serverリソース</entry>
</row>
<row xml:id="constant.dns-ptr">
<entry><constant>DNS_PTR</constant></entry>
<entry>ポインタリソース</entry>
</row>
<row xml:id="constant.dns-hinfo">
<entry><constant>DNS_HINFO</constant></entry>
<entry>ホスト情報リソースこれらの値の意味については、IANA の
<link xlink:href="&url.iana.system-names;"><literal>Operating System Names</literal></link>
を参照ください)</entry>
</row>
<row xml:id="constant.dns-soa">
<entry><constant>DNS_SOA</constant></entry>
<entry>認証リソースの開始</entry>
</row>
<row xml:id="constant.dns-txt">
<entry><constant>DNS_TXT</constant></entry>
<entry>テキストリソース</entry>
</row>
<row xml:id="constant.dns-any">
<entry><constant>DNS_ANY</constant></entry>
<entry>
全てのリソースレコード。多くのシステムでは、
これは、全てのリソースレコードを返します。
しかし、危機的な状況には対応できません。代わりに
<constant>DNS_ALL</constant> を試してください。
</entry>
</row>
<row xml:id="constant.dns-aaaa">
<entry><constant>DNS_AAAA</constant></entry>
<entry>IPv6アドレスリソース</entry>
</row>
<row xml:id="constant.dns-all">
<entry><constant>DNS_ALL</constant></entry>
<entry>
利用可能なレコード型毎のネームサーバーへの反復クエリ。
</entry>
</row>
</tbody>
</tgroup>
</table>
</appendix>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->