summaryrefslogtreecommitdiffstats
path: root/doc/CrtChannel.3
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-09-07 11:45:29 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-09-07 11:45:29 (GMT)
commitcdecc6d50946d64936ade03c2384bf0361e9156e (patch)
tree50cc80d71f61b841e0dc5b0d94ba4277c21e9b66 /doc/CrtChannel.3
parent67be0a6752a150bad176f36988e3af03f25cc4d3 (diff)
downloadtcl-cdecc6d50946d64936ade03c2384bf0361e9156e.zip
tcl-cdecc6d50946d64936ade03c2384bf0361e9156e.tar.gz
tcl-cdecc6d50946d64936ade03c2384bf0361e9156e.tar.bz2
Revive TIP #220 implementation: Escalate Privileges in VFS Close Callback
Diffstat (limited to 'doc/CrtChannel.3')
-rw-r--r--doc/CrtChannel.315
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/CrtChannel.3 b/doc/CrtChannel.3
index 02772e8..1496631 100644
--- a/doc/CrtChannel.3
+++ b/doc/CrtChannel.3
@@ -35,6 +35,11 @@ Tcl_ThreadId
int
\fBTcl_GetChannelMode\fR(\fIchannel\fR)
.sp
+.VS 8.7
+int
+\fBTcl_RemoveChannelMode\fR(\fIinterp, channel, mode\fR)
+.VE 8.7
+.sp
int
\fBTcl_GetChannelBufferSize\fR(\fIchannel\fR)
.sp
@@ -243,6 +248,16 @@ events to the correct event queue even for a multi-threaded core.
and \fBTCL_WRITABLE\fR, indicating whether the channel is open for input
and output.
.PP
+.VS 8.7
+.PP
+\fBTcl_RemoveChannelMode\fR removes an access privilege from the
+channel, either \fBTCL_READABLE\fR or \fBTCL_WRITABLE\fR, and returns
+a regular Tcl result code, \fBTCL_OK\fR, or \fBTCL_ERROR\fR. The
+function throws an error if either an invalid mode is specified or the
+result of the removal would be an inaccessible channel. In that case
+an error message is left in the interp argument, if not NULL.
+.VE 8.7
+.PP
\fBTcl_GetChannelBufferSize\fR returns the size, in bytes, of buffers
allocated to store input or output in \fIchannel\fR. If the value was not set
by a previous call to \fBTcl_SetChannelBufferSize\fR, described below, then