| 1 |
/***************************************************************************
|
| 2 |
fork.c - description
|
| 3 |
-------------------
|
| 4 |
begin : Mon Oct 18 2004
|
| 5 |
copyright : (C) 2004 by Leaflet
|
| 6 |
email : leaflet@leafok.com
|
| 7 |
***************************************************************************/
|
| 8 |
|
| 9 |
/***************************************************************************
|
| 10 |
* *
|
| 11 |
* This program is free software; you can redistribute it and/or modify *
|
| 12 |
* it under the terms of the GNU General Public License as published by *
|
| 13 |
* the Free Software Foundation; either version 2 of the License, or *
|
| 14 |
* (at your option) any later version. *
|
| 15 |
* *
|
| 16 |
***************************************************************************/
|
| 17 |
|
| 18 |
#include "common.h"
|
| 19 |
|
| 20 |
int
|
| 21 |
fork_server(int sock_server, int sock_client, struct sockaddr_in * p_sin)
|
| 22 |
{
|
| 23 |
int pid;
|
| 24 |
char temp[256];
|
| 25 |
|
| 26 |
if (pid = fork ())
|
| 27 |
return 0;
|
| 28 |
else if (pid < 0)
|
| 29 |
return -1;
|
| 30 |
|
| 31 |
sprintf(temp, "Child process [%d] start\n", getpid());
|
| 32 |
log_std (temp);
|
| 33 |
|
| 34 |
if (close(sock_server) == -1)
|
| 35 |
{
|
| 36 |
log_error("Close server socket failed\n");
|
| 37 |
}
|
| 38 |
|
| 39 |
socket_client = sock_client;
|
| 40 |
strcpy(hostaddr_client,inet_ntoa(p_sin->sin_addr));
|
| 41 |
port_client = ntohs(p_sin->sin_port);
|
| 42 |
|
| 43 |
bbs_main();
|
| 44 |
|
| 45 |
if (close(sock_client) == -1)
|
| 46 |
{
|
| 47 |
log_error("Close client socket failed\n");
|
| 48 |
}
|
| 49 |
|
| 50 |
sprintf(temp, "Child process [%d] exit\n", getpid());
|
| 51 |
log_std (temp);
|
| 52 |
|
| 53 |
log_end();
|
| 54 |
|
| 55 |
//Exit child process normally
|
| 56 |
exit(0);
|
| 57 |
|
| 58 |
return 0;
|
| 59 |
}
|