客户端向服务端发送字符串UDP TEST,服务器接收数据后将接收到的字符串发送回客户端
udp_server.c
#include <sys/types.h>
#include <sys/socket.h> /*socket()/bind()*/
#include <linux/in.h> /*struct sockaddr_in*/
#include <string.h> /*memset()*/
#define PORT_SERV 8888
#define BUFF_LEN 256
static udpserv_echo(int s, struct sockaddr *client)
{
int n;
char buff[BUFF_LEN];
int len;
while(1)
{
len =