The R Project SVN R

Rev

Rev 68912 | 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
68948 ripley 2
% Part of the R package, https://www.R-project.org
68912 ripley 3
% Copyright 1995-2015 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{
68912 ripley 13
  \item{socket}{a \code{socket} object}
27442 ripley 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}}
68912 ripley 26
 
27
  Compiling in support for sockets was optional prior to \R 3.3.0: see
28
  \code{\link{capabilities}("sockets")} to see if it is available.
27442 ripley 29
}
30
 
31
\keyword{misc}