MCPcopy Create free account
hub / github.com/MapServer/MapServer / msIO_installStdinFromBuffer

Function msIO_installStdinFromBuffer

mapio.c:832–846  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

830/************************************************************************/
831
832void msIO_installStdinFromBuffer()
833
834{
835 msIOContextGroup *group = msIO_GetContextGroup();
836 msIOContext context;
837
838 context.label = "buffer";
839 context.write_channel = MS_FALSE;
840 context.readWriteFunc = msIO_bufferRead;
841 context.cbData = calloc(sizeof(msIOBuffer),1);
842
843 msIO_installHandlers( &context,
844 &group->stdout_context,
845 &group->stderr_context );
846}
847
848/************************************************************************/
849/* msIO_stripStdoutBufferContentType() */

Callers 1

php_mapscript.cFile · 0.85

Calls 2

msIO_GetContextGroupFunction · 0.85
msIO_installHandlersFunction · 0.85

Tested by

no test coverage detected