我有一台服务器与另一台服务器联系以检索客户端请求的文件。
请求过程是:
Client ----> Server A ----> Server B
发送文件的过程:
Server B ---> server A ----> client
我无法将客户端直接连接到服务器 B。
要求:
服务器 A 必须在客户端文件数据到达另一台服务器时将其转发给客户端(无需等待整个文件的接收)。所以当它们到达时字节到字节。
其他信息:
TCP socket;
Programming in C on Linux.
有人可以给我一些想法来实现这个吗?
更新
这是我的第一次尝试:
/* This code is refered to SERVER A */
/* s is the file descriptor for comunicate with SERVER B */
/* t is the file descriptor for comunicate with CLIENT */
int forward (int s, int t, char *buffer, size_t bytes){
size_t n;
ssize_t nread;
ssize_t nsend;
char c;
for (n=1; n<bytes; n++)
{
nread=recv(s, &c, 1, 0);
if (nread == 1)
{
nsend = send(t,c,1,0);
if (nsend<=0) {
return (-1);
}
}
else if (nread == 0)
{
return (n-1); /* Errore */
}
else
return (-1); /* Errore */
}
return (n);
}