The R Project SVN R

Rev

Rev 56186 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
42333 ripley 1
% File src/library/utils/man/close.socket.Rd
2
% Part of the R package, http://www.R-project.org
59039 ripley 3
% Copyright 1995-2007 R Core Team
42333 ripley 4
% Distributed under GPL 2 or later
5
 
27442 ripley 6
\name{close.socket}
7
\title{Close a Socket}
8
\usage{
9
close.socket(socket, \dots)
10
}
56186 murdoch 11
\alias{close.socket}
27442 ripley 12
\arguments{
13
  \item{socket}{A \code{socket} object}
14
  \item{\dots}{further arguments passed to or from other methods.}
15
}
16
\description{
17
  Closes the socket and frees the space in the file descriptor table.  The
18
  port may not be freed immediately.
19
}
20
\value{
21
  logical indicating success or failure
22
}
23
\author{Thomas Lumley}
24
\seealso{
25
  \code{\link{make.socket}}, \code{\link{read.socket}}
26
}
27
 
28
\keyword{misc}