mirror of
https://github.com/php/doc-es.git
synced 2026-03-24 07:22:16 +01:00
72 lines
2.3 KiB
XML
72 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 5f8047c12b4078a6f686b2b0589e9284c47bf155 Maintainer: PhilDaiguille Status: ready -->
|
|
<!-- Reviewed: no Maintainer: PhilDaiguille -->
|
|
|
|
<book xml:id="book.sockets" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<?phpdoc extension-membership="bundled" ?>
|
|
<title>Sockets</title>
|
|
|
|
<!-- {{{ preface -->
|
|
<preface xml:id="intro.sockets">
|
|
&reftitle.intro;
|
|
<para>
|
|
La extensión socket implementa una interfaz de bajo nivel con las funciones
|
|
de comunicación por socket, basadas en los sockets BSD tan populares,
|
|
y proporciona la posibilidad de funcionar tanto como cliente
|
|
como servidor.
|
|
</para>
|
|
<para>
|
|
Para una interfaz de socket cliente más genérica, véase
|
|
<function>stream_socket_client</function>,
|
|
<function>stream_socket_server</function>,
|
|
<function>fsockopen</function> y
|
|
<function>pfsockopen</function>.
|
|
</para>
|
|
<para>
|
|
Al utilizar estas funciones, es importante recordar que si muchas de ellas
|
|
tienen el mismo nombre que sus equivalentes en lenguaje C, suelen tener
|
|
declaraciones diferentes. Léanse atentamente las descripciones para evitar
|
|
confusiones.
|
|
</para>
|
|
<para>
|
|
Dicho esto, quienes no estén familiarizados con la programación por socket
|
|
pueden encontrar mucha documentación en las páginas de manual Unix
|
|
apropiadas, y existe una gran cantidad de introducciones en lenguaje C
|
|
en la web, que pueden ser fácilmente reutilizadas, con adaptaciones menores.
|
|
<link xlink:href="&url.socket.faq;">UNIX Socket FAQ</link> es un buen punto de partida.
|
|
</para>
|
|
</preface>
|
|
<!-- }}} -->
|
|
|
|
&reference.sockets.setup;
|
|
&reference.sockets.constants;
|
|
&reference.sockets.examples;
|
|
&reference.sockets.errors;
|
|
&reference.sockets.reference;
|
|
&reference.sockets.socket;
|
|
&reference.sockets.addressinfo;
|
|
|
|
</book>
|
|
|
|
<!-- 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
|
|
-->
|