2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2007-06-20 22:25:43 +00:00
|
|
|
<!-- $Revision: 1.11 $ -->
|
|
|
|
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.socket-set-option">
|
2007-06-15 00:16:44 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>socket_set_option</refname>
|
|
|
|
<refpurpose>Sets socket options for the socket</refpurpose>
|
|
|
|
</refnamediv>
|
2007-06-15 00:16:46 +00:00
|
|
|
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
2007-06-15 00:16:44 +00:00
|
|
|
<methodsynopsis>
|
|
|
|
<type>bool</type><methodname>socket_set_option</methodname>
|
|
|
|
<methodparam><type>resource</type><parameter>socket</parameter></methodparam>
|
|
|
|
<methodparam><type>int</type><parameter>level</parameter></methodparam>
|
|
|
|
<methodparam><type>int</type><parameter>optname</parameter></methodparam>
|
|
|
|
<methodparam><type>mixed</type><parameter>optval</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
2007-06-15 00:16:46 +00:00
|
|
|
The <function>socket_set_option</function> function sets the option
|
|
|
|
specified by the <parameter>optname</parameter> parameter, at the
|
|
|
|
specified protocol <parameter>level</parameter>, to the value pointed to
|
|
|
|
by the <parameter>optval</parameter> parameter for the
|
|
|
|
<parameter>socket</parameter>.
|
2007-06-15 00:16:44 +00:00
|
|
|
</para>
|
2007-06-15 00:16:46 +00:00
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
2007-06-15 00:16:44 +00:00
|
|
|
<para>
|
2007-06-15 00:16:46 +00:00
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>socket</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>level</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
The <parameter>level</parameter> parameter specifies the protocol
|
|
|
|
level at which the option resides. For example, to retrieve options at
|
|
|
|
the socket level, a <parameter>level</parameter> parameter of
|
|
|
|
<constant>SOL_SOCKET</constant> would be used. Other levels, such as
|
|
|
|
TCP, can be used by specifying the protocol number of that level.
|
|
|
|
Protocol numbers can be found by using the
|
|
|
|
<function>getprotobyname</function> function.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>optname</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
The available socket options are the same as those for the
|
|
|
|
<function>socket_get_option</function> function.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>optval</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
The option value.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
2007-06-15 00:16:44 +00:00
|
|
|
</para>
|
2007-06-15 00:16:46 +00:00
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
2007-06-15 00:16:44 +00:00
|
|
|
<para>
|
2007-06-15 00:16:46 +00:00
|
|
|
&return.success;
|
2007-06-15 00:16:44 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
2007-06-15 00:16:46 +00:00
|
|
|
|
|
|
|
<refsect1 role="changelog">
|
|
|
|
&reftitle.changelog;
|
|
|
|
<para>
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>&Version;</entry>
|
|
|
|
<entry>&Description;</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>4.3.0</entry>
|
|
|
|
<entry>
|
|
|
|
This function was renamed. It used to be called
|
|
|
|
<function>socket_setopt</function>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
2007-06-15 00:16:44 +00:00
|
|
|
</refentry>
|
2002-04-15 00:12:54 +00:00
|
|
|
|
|
|
|
<!-- 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:"../../../../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
|
|
|
|
-->
|