OSDN Git Service

Retire iptables repository
[linuxjm/iptables.git] / po4a / man3 / ipq_read.3.ja.po
diff --git a/po4a/man3/ipq_read.3.ja.po b/po4a/man3/ipq_read.3.ja.po
deleted file mode 100644 (file)
index 5b607f4..0000000
+++ /dev/null
@@ -1,188 +0,0 @@
-# SOME DESCRIPTIVE TITLE
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2013-04-08 14:07+0900\n"
-"PO-Revision-Date: 2013-04-08 14:29+0900\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. type: TH
-#, no-wrap
-msgid "IPQ_READ"
-msgstr ""
-
-#. type: TH
-#, no-wrap
-msgid "16 October 2001"
-msgstr ""
-
-#. type: TH
-#, no-wrap
-msgid "Linux iptables 1.2"
-msgstr ""
-
-#. type: TH
-#, no-wrap
-msgid "Linux Programmer's Manual"
-msgstr ""
-
-#
-#
-#
-#
-#.      Copyright (c) 2000-2001 Netfilter Core Team
-#.      This program is free software; you can redistribute it and/or modify
-#.      it under the terms of the GNU General Public License as published by
-#.      the Free Software Foundation; either version 2 of the License, or
-#.      (at your option) any later version.
-#.      This program is distributed in the hope that it will be useful,
-#.      but WITHOUT ANY WARRANTY; without even the implied warranty of
-#.      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#.      GNU General Public License for more details.
-#.      You should have received a copy of the GNU General Public License
-#.      along with this program; if not, write to the Free Software
-#.      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-#. type: SH
-#, no-wrap
-msgid "NAME"
-msgstr ""
-
-#. type: Plain text
-msgid "ipq_read \\(em read queue messages from ip_queue and read into supplied buffer"
-msgstr ""
-
-#. type: SH
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr ""
-
-#. type: Plain text
-msgid "B<#include E<lt>linux/netfilter.hE<gt>>"
-msgstr ""
-
-#. type: Plain text
-msgid "B<#include E<lt>libipq.hE<gt>>"
-msgstr ""
-
-#. type: Plain text
-msgid "B<ssize_t ipq_read(const struct ipq_handle *>I<h>B<, unsigned char *>I<buf>B<, size_t >I<len>B<, int >I<timeout>B<);>"
-msgstr ""
-
-#. type: SH
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr ""
-
-#. type: Plain text
-msgid "The B<ipq_read> function reads a queue message from the kernel and copies it to the memory pointed to by I<buf> to a maximum length of I<len>."
-msgstr ""
-
-#. type: Plain text
-msgid "The I<h> parameter is a context handle which must previously have been returned successfully from a call to B<ipq_create_handle>."
-msgstr ""
-
-#. type: Plain text
-msgid "The caller is responsible for ensuring that the memory pointed to by I<buf> is large enough to contain I<len> bytes."
-msgstr ""
-
-#. type: Plain text
-msgid "The I<timeout> parameter may be used to set a timeout for the operation, specified in microseconds.  This is implemented internally by the library via the B<select> system call.  A value of zero provides normal, backwards-compatible blocking behaviour with no timeout.  A negative value causes the function to return immediately."
-msgstr ""
-
-#. type: Plain text
-msgid "Data returned via I<buf> should not be accessed directly.  Use the B<ipq_message_type>, B<ipq_get_packet>, and B<ipq_get_msgerr> functions to access the queue message in the buffer."
-msgstr ""
-
-#. type: SH
-#, no-wrap
-msgid "RETURN VALUE"
-msgstr ""
-
-#. type: Plain text
-msgid "On failure, -1 is returned."
-msgstr ""
-
-#. type: Plain text
-msgid "On success, a non-zero positive value is returned when no timeout value is specified."
-msgstr ""
-
-#. type: Plain text
-msgid "On success with a timeout value specified, zero is returned if no data was available to read, or if a non-blocked signal was caught.  In the latter case, the global B<errno> value will be set to B<EINTR>."
-msgstr ""
-
-#. type: SH
-#, no-wrap
-msgid "ERRORS"
-msgstr ""
-
-#. type: Plain text
-msgid "On error, a descriptive error message will be available via the B<ipq_errstr> function."
-msgstr ""
-
-#. type: SH
-#, no-wrap
-msgid "DIAGNOSTICS"
-msgstr ""
-
-#. type: Plain text
-msgid "While the B<ipq_read> function may return successfully, the queue message copied to the buffer may itself be an error message from a higher level kernel component.  Use B<ipq_message_type> to determine if it is an error message, and B<ipq_get_msgerr> to access the value of the message."
-msgstr ""
-
-#. type: SH
-#, no-wrap
-msgid "BUGS"
-msgstr ""
-
-#. type: Plain text
-msgid "None known."
-msgstr ""
-
-#. type: SH
-#, no-wrap
-msgid "AUTHOR"
-msgstr ""
-
-#. type: Plain text
-msgid "James Morris E<lt>jmorris@intercode.com.auE<gt>"
-msgstr ""
-
-#. type: SH
-#, no-wrap
-msgid "COPYRIGHT"
-msgstr ""
-
-#. type: Plain text
-msgid "Copyright (c) 2000-2001 Netfilter Core Team."
-msgstr ""
-
-#. type: Plain text
-msgid "Distributed under the GNU General Public License."
-msgstr ""
-
-#. type: SH
-#, no-wrap
-msgid "CREDITS"
-msgstr ""
-
-#. type: Plain text
-msgid "Joost Remijn implemented the timeout feature, which appeared in the 1.2.4 release of iptables."
-msgstr ""
-
-#. type: SH
-#, no-wrap
-msgid "SEE ALSO"
-msgstr ""
-
-#. type: Plain text
-msgid "B<iptables>(8), B<libipq>(3), B<select>(2)."
-msgstr ""