ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzab6_5.4.0.1/spwnwrkr.htm

99 lines
4.6 KiB
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-us" xml:lang="en-us">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="security" content="public" />
<meta name="Robots" content="index,follow" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta name="DC.Type" content="reference" />
<meta name="DC.Title" content="Example: Enable the worker job to receive a data buffer" />
<meta name="abstract" content="This example contains the code that enables the worker job to receive a data buffer from the client job and echo it back." />
<meta name="description" content="This example contains the code that enables the worker job to receive a data buffer from the client job and echo it back." />
<meta name="DC.Relation" scheme="URI" content="xspawn.htm" />
<meta name="DC.Relation" scheme="URI" content="xspwnserver.htm" />
<meta name="copyright" content="(C) Copyright IBM Corporation 2001, 2006" />
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 2001, 2006" />
<meta name="DC.Format" content="XHTML" />
<meta name="DC.Identifier" content="spwnwrkr" />
<meta name="DC.Language" content="en-us" />
<!-- All rights reserved. Licensed Materials Property of IBM -->
<!-- US Government Users Restricted Rights -->
<!-- Use, duplication or disclosure restricted by -->
<!-- GSA ADP Schedule Contract with IBM Corp. -->
<link rel="stylesheet" type="text/css" href="./ibmdita.css" />
<link rel="stylesheet" type="text/css" href="./ic.css" />
<title>Example: Enable the worker job to receive a data buffer</title>
</head>
<body id="spwnwrkr"><a name="spwnwrkr"><!-- --></a>
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
<h1 class="topictitle1">Example: Enable the worker job to receive a data buffer</h1>
<div><p>This example contains the code that enables the worker job to receive
a data buffer from the client job and echo it back.</p>
<div class="section"><div class="note"><span class="notetitle">Note:</span> By using the code examples, you agree to the terms
of the <a href="codedisclaimer.htm">Code license and disclaimer information</a>.</div>
<pre>/**************************************************************************/
/* Worker job that receives and echoes back a data buffer to a client */
/**************************************************************************/
#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;sys/socket.h&gt;
main (int argc, char *argv[])
{
int rc, len;
int sockfd;
char buffer[80];
/*************************************************/
/* The descriptor for the incoming connection is */
/* passed to this worker job as a descriptor 0. */
/*************************************************/
sockfd = 0;
/*************************************************/
/* Receive a message from the client */
/*************************************************/
printf("Wait for client to send us a message\n");
rc = recv(sockfd, buffer, sizeof(buffer), 0);
if (rc &lt;= 0)
{
perror("recv() failed");
close(sockfd);
exit(-1);
}
printf("&lt;%s&gt;\n", buffer);
/*************************************************/
/* Echo the data back to the client */
/*************************************************/
printf("Echo it back\n");
len = rc;
rc = send(sockfd, buffer, len, 0);
if (rc &lt;= 0)
{
perror("send() failed");
close(sockfd);
exit(-1);
}
/*************************************************/
/* Close down the incoming connection */
/*************************************************/
close(sockfd);
}</pre>
</div>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="xspawn.htm" title="This example shows how a server program can use the spawn() API to create a child process that inherits the socket descriptor from the parent.">Example: Use the spawn() API to create child processes</a></div>
</div>
<div class="relref"><strong>Related reference</strong><br />
<div><a href="xspwnserver.htm" title="This example shows how to use the spawn() API to create a child process that inherits the socket descriptor from the parent.">Example: Create a server that uses spawn()</a></div>
</div>
</div>
</body>
</html>