- 论坛徽章:
- 0
|
程序如下:
int sndD_bind(char *s_addr, int sndport)
{
int sock1 = -1;
/*建立连接 */
#ifdef DEBUG
printf("Connect: port=%d\n", sndport);
#endif
sock1 = socketTcpConnect(inet_addr(s_addr), sndport);
if (sock1 < 0)
{
printf("file[%s]:line:[%d], Connect to ip[%s], sndport [%d] error.",
__FILE__, __LINE__, s_addr, sndport);
return -10;
}
//#ifdef DEBUG
printf("Bind Ok :sock[%d],sndport[%d]\n", sock1, sndport);
//#endif
return sock1;
}
编译后提示错误如下:
"newCommon.cpp", line 136: Error: Multiple declaration for sndD_bind.
"newCommon.cpp", line 136: Error: Badly formed expression.
"newCommon.cpp", line 136: Error: "," expected instead of ")".
"newCommon.cpp", line 144: Error: Multiple declaration for printf.
"newCommon.cpp", line 147: Error: S_un is not defined.
"newCommon.cpp", line 147: Error: Badly formed expression.
"newCommon.cpp", line 149: Error: A declaration was expected instead of "if".
"newCommon.cpp", line 149: Error: ")" expected instead of "<".
"newCommon.cpp", line 158: Error: Multiple declaration for printf.
"newCommon.cpp", line 161: Error: A declaration was expected instead of "return".
"newCommon.cpp", line 161: Error: Multiple declaration for sock1.
"newCommon.cpp", line 163: Error: A declaration was expected instead of "}".
12 Error(s) detected.
*** Error code 12
make: Fatal error: Command failed for target `newCommon.o'
麻烦各位老大们指点一下。 |
|