技术咨询:wulianjishu666
利用UDP实现双人不同机器聊天(服务器可以被多人连接,显示多人聊天记录)
//-------------------------服务器
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <arpa/inet.h>
int main(int argc,char *argv[])
{
int sockfd = 0;
struct sockaddr_in bindaddr;
unsigned int port = 8000;
if(argc > 1)
{
port = atoi(argv[1]);
}
sockfd = socket(AF_INET,SOCK_DGRAM,0);
if(sockfd < 0)
perror("socked");
bzero(&bindaddr,sizeof(bindaddr));