autodoc.git
/
autodoc.xml
version
»
Context lines:
10
20
40
80
file
none
3
autodoc.git/autodoc.xml:1906:
<variable name='rsa'><type><object resolved='7.8::Crypto.RSA'>Crypto.RSA</object></type></variable> </docgroup> <docgroup homogen-name='set_cipher_suite' homogen-type='method'><doc><text><p>Sets the proper authentication method and cipher specification for the given cipher <ref resolved='7.8::SSL.session.set_cipher_suite.suite'>suite</ref> and <ref>verison</ref>.</p> </text></doc> <method name='set_cipher_suite'> <arguments><argument name='suite'><type><int/></type></argument><argument name='version'><type><or><object resolved='7.8::SSL.Constants.ProtocolVersion'>ProtocolVersion</object><int/></or></type></argument></arguments> <returntype><void/></returntype> </method> </docgroup>
-
<docgroup homogen-name='set_compression_method' homogen-type='method'><doc><text><p>Sets the compression method. Currently only <ref resolved='
7.8
::SSL.Constants.CompressionType.COMPRESSION_null'>COMPRESSION_null</ref> is
+
<docgroup homogen-name='set_compression_method' homogen-type='method'><doc><text><p>Sets the compression method. Currently only <ref resolved='
predef
::SSL.Constants.CompressionType.COMPRESSION_null'>COMPRESSION_null</ref> is
supported.</p> </text></doc> <method name='set_compression_method'> <arguments><argument name='compr'><type><int/></type></argument></arguments> <returntype><void/></returntype> </method> </docgroup> </class> <class name='sslfile'> <doc><text><p>Interface similar to <ref resolved='7.8::Stdio.File'>Stdio.File</ref>.</p>
autodoc.git/autodoc.xml:101855:
</text></group><group><member><type><object resolved='predef::Process.create_process.limit_value'>limit_value</object></type><index>"cpu"</index></member><text><p>maximum amount of cpu time used by the process in seconds</p> </text></group><group><member><type><object resolved='predef::Process.create_process.limit_value'>limit_value</object></type><index>"data"</index></member><text><p>maximum heap (brk, malloc) size in bytes</p> </text></group><group><member><type><object resolved='predef::Process.create_process.limit_value'>limit_value</object></type><index>"fsize"</index></member><text><p>maximum size of files created by the process in bytes</p> </text></group><group><member><type><object resolved='predef::Process.create_process.limit_value'>limit_value</object></type><index>"map_mem"</index></member><text><p>maximum size of the process's mapped address space (mmap() and heap size) in bytes</p> </text></group><group><member><type><object resolved='predef::Process.create_process.limit_value'>limit_value</object></type><index>"mem"</index></member><text><p>maximum size of the process's total amount of available memory (mmap, heap and stack size) in bytes</p> </text></group><group><member><type><object resolved='predef::Process.create_process.limit_value'>limit_value</object></type><index>"nofile"</index></member><text><p>maximum number of file descriptors the process may create</p> </text></group><group><member><type><object resolved='predef::Process.create_process.limit_value'>limit_value</object></type><index>"stack"</index></member><text><p>maximum stack size in bytes</p> </text></group></mapping>
+
</text></group><group><member><type><object resolved='predef::Stdio.File'>Stdio.File</object></type><index>"conpty"</index></member><text><p>Bind the process to the console associated with this
+
pty slave. NT only.</p>
</text></group></mapping> </text></group><group><example/><text><p>Process.create_process(({ "/usr/bin/env" }), (["env" : getenv() + (["TERM":"vt100"]) ]));</p> </text></group><group><example/><text><p>//! Spawn a new process with the args @[args] and optionally a //! standard input if you provide such a @[Stdio.File] object. //! @returns //! Returns the new process and a pipe from which you can read //! its output. array(Process.Process|Stdio.File) spawn(Stdio.File|void stdin, string ... args) { Stdio.File stdout = Stdio.File(); mapping opts = ([ "stdout" : stdout->pipe() ]); if( stdin ) opts->stdin = stdin; return ({ Process.create_process( args, opts ), stdout }); }</p> </text></group><group><note/><text><p>All parameters that accept both string or int input can be noticeably slower using a string instead of an integer; if maximum performance is an issue, please use integers.</p> </text></group><group><note/><text><p>On NT the only supported modifiers are: <expr>"cwd"</expr>,
-
<expr>"stdin"</expr>, <expr>"stdout"</expr>, <expr>"stderr"</expr>
and
-
<expr>"env"</expr>. All other modifiers are silently ignored.</p>
+
<expr>"
conpty"</expr>, <expr>"
stdin"</expr>, <expr>"stdout"</expr>, <expr>"stderr"</expr>
+
and
<expr>"env"</expr>. All other modifiers are silently ignored.</p>
</text></group><group><note/><text><p>Support for <expr>"callback"</expr> was added in Pike 7.7.</p> </text></group><group><note/><text><p>Chroot changing directory to <expr>"/"</expr> was added in Pike 7.9.</p> </text></group></doc> <method name='create'> <arguments><argument name='command_args'><type><array><valuetype><string/></valuetype></array></type></argument><argument name='modifiers'><type><or><void/><mapping/></or></type></argument></arguments> <returntype><void/></returntype> </method> </docgroup> <docgroup homogen-name='kill' homogen-type='method'><doc><text><p>Send a signal to the process.</p> </text><group><returns/><text><int><group><value>1</value><text><p>Success.</p>