]> git.kernelconcepts.de Git - karo-tx-redboot.git/blobdiff - doc/html/ref/net-common-tcpip-manpages-getpeername.html
Cleanup CVS ipmorted branch
[karo-tx-redboot.git] / doc / html / ref / net-common-tcpip-manpages-getpeername.html
diff --git a/doc/html/ref/net-common-tcpip-manpages-getpeername.html b/doc/html/ref/net-common-tcpip-manpages-getpeername.html
deleted file mode 100644 (file)
index f431546..0000000
+++ /dev/null
@@ -1,232 +0,0 @@
-<!-- Copyright (C) 2003 Red Hat, Inc.                                -->
-<!-- This material may be distributed only subject to the terms      -->
-<!-- and conditions set forth in the Open Publication License, v1.0  -->
-<!-- or later (the latest version is presently available at          -->
-<!-- http://www.opencontent.org/openpub/).                           -->
-<!-- Distribution of the work or derivative of the work in any       -->
-<!-- standard (paper) book form is prohibited unless prior           -->
-<!-- permission is obtained from the copyright holder.               -->
-<HTML
-><HEAD
-><TITLE
->getpeername</TITLE
-><meta name="MSSmartTagsPreventParsing" content="TRUE">
-<META
-NAME="GENERATOR"
-CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
-"><LINK
-REL="HOME"
-TITLE="eCos Reference Manual"
-HREF="ecos-ref.html"><LINK
-REL="UP"
-TITLE="TCP/IP Library Reference"
-HREF="tcpip-library-reference.html"><LINK
-REL="PREVIOUS"
-TITLE="connect"
-HREF="net-common-tcpip-manpages-connect.html"><LINK
-REL="NEXT"
-TITLE="getsockname"
-HREF="net-common-tcpip-manpages-getsockname.html"></HEAD
-><BODY
-CLASS="SECT1"
-BGCOLOR="#FFFFFF"
-TEXT="#000000"
-LINK="#0000FF"
-VLINK="#840084"
-ALINK="#0000FF"
-><DIV
-CLASS="NAVHEADER"
-><TABLE
-SUMMARY="Header navigation table"
-WIDTH="100%"
-BORDER="0"
-CELLPADDING="0"
-CELLSPACING="0"
-><TR
-><TH
-COLSPAN="3"
-ALIGN="center"
->eCos Reference Manual</TH
-></TR
-><TR
-><TD
-WIDTH="10%"
-ALIGN="left"
-VALIGN="bottom"
-><A
-HREF="net-common-tcpip-manpages-connect.html"
-ACCESSKEY="P"
->Prev</A
-></TD
-><TD
-WIDTH="80%"
-ALIGN="center"
-VALIGN="bottom"
->Chapter 38. TCP/IP Library Reference</TD
-><TD
-WIDTH="10%"
-ALIGN="right"
-VALIGN="bottom"
-><A
-HREF="net-common-tcpip-manpages-getsockname.html"
-ACCESSKEY="N"
->Next</A
-></TD
-></TR
-></TABLE
-><HR
-ALIGN="LEFT"
-WIDTH="100%"></DIV
-><DIV
-CLASS="SECT1"
-><H1
-CLASS="SECT1"
-><A
-NAME="NET-COMMON-TCPIP-MANPAGES-GETPEERNAME">getpeername</H1
-><TABLE
-BORDER="5"
-BGCOLOR="#E0E0F0"
-WIDTH="70%"
-><TR
-><TD
-><PRE
-CLASS="SCREEN"
->GETPEERNAME(2)                System Calls Manual               GETPEERNAME(2)
-
-NAME
-     getpeername - get name of connected peer
-
-SYNOPSIS
-     #include &lt;sys/types.h&#62;
-     #include &lt;sys/socket.h&#62;
-
-     int
-     getpeername(int s, struct sockaddr *name, socklen_t *namelen);
-
-DESCRIPTION
-     getpeername() returns the address information of the peer connected to
-     socket s.  One common use occurs when a process inherits an open socket,
-     such as TCP servers forked from inetd(8).  In this scenario,
-     getpeername() is used to determine the connecting client's IP address.
-
-     getpeername() takes three parameters:
-
-     s Contains the file descriptor of the socket whose peer should be looked
-     up.
-
-     name Points to a sockaddr structure that will hold the address informa-
-     tion for the connected peer.  Normal use requires one to use a structure
-     specific to the protocol family in use, such as sockaddr_in (IPv4) or
-     sockaddr_in6 (IPv6), cast to a (struct sockaddr *).
-
-     For greater portability, especially with the newer protocol families, the
-     new struct sockaddr_storage should be used.  sockaddr_storage is large
-     enough to hold any of the other sockaddr_* variants.  On return, it can
-     be cast to the correct sockaddr type, based the protocol family contained
-     in its ss_family field.
-
-     namelen Indicates the amount of space pointed to by name, in bytes.
-
-     If address information for the local end of the socket is required, the
-     getsockname(2) function should be used instead.
-
-     If name does not point to enough space to hold the entire socket address,
-     the result will be truncated to namelen bytes.
-
-RETURN VALUES
-     If the call succeeds, a 0 is returned and namelen is set to the actual
-     size of the socket address returned in name.  Otherwise, errno is set and
-     a value of -1 is returned.
-
-ERRORS
-     On failure, errno is set to one of the following:
-
-     [EBADF]            The argument s is not a valid descriptor.
-
-     [ENOTSOCK]         The argument s is a file, not a socket.
-
-     [ENOTCONN]         The socket is not connected.
-
-     [ENOBUFS]          Insufficient resources were available in the system to
-                        perform the operation.
-
-     [EFAULT]           The name parameter points to memory not in a valid
-                        part of the process address space.
-
-SEE ALSO
-     accept(2), bind(2), getsockname(2), getpeereid(2), socket(2)
-
-HISTORY
-     The getpeername() function call appeared in 4.2BSD.
-
-BSD                              July 17, 1999                             BSD
-    </PRE
-></TD
-></TR
-></TABLE
-></DIV
-><DIV
-CLASS="NAVFOOTER"
-><HR
-ALIGN="LEFT"
-WIDTH="100%"><TABLE
-SUMMARY="Footer navigation table"
-WIDTH="100%"
-BORDER="0"
-CELLPADDING="0"
-CELLSPACING="0"
-><TR
-><TD
-WIDTH="33%"
-ALIGN="left"
-VALIGN="top"
-><A
-HREF="net-common-tcpip-manpages-connect.html"
-ACCESSKEY="P"
->Prev</A
-></TD
-><TD
-WIDTH="34%"
-ALIGN="center"
-VALIGN="top"
-><A
-HREF="ecos-ref.html"
-ACCESSKEY="H"
->Home</A
-></TD
-><TD
-WIDTH="33%"
-ALIGN="right"
-VALIGN="top"
-><A
-HREF="net-common-tcpip-manpages-getsockname.html"
-ACCESSKEY="N"
->Next</A
-></TD
-></TR
-><TR
-><TD
-WIDTH="33%"
-ALIGN="left"
-VALIGN="top"
->connect</TD
-><TD
-WIDTH="34%"
-ALIGN="center"
-VALIGN="top"
-><A
-HREF="tcpip-library-reference.html"
-ACCESSKEY="U"
->Up</A
-></TD
-><TD
-WIDTH="33%"
-ALIGN="right"
-VALIGN="top"
->getsockname</TD
-></TR
-></TABLE
-></DIV
-></BODY
-></HTML
->
\ No newline at end of file