当前位置:   article > 正文

Linux学习笔记(c):TCP客户端向服务器端传输照片_实现客户端上传一张图片到服务器 c语言

实现客户端上传一张图片到服务器 c语言

在这里插入图片描述
在这里插入图片描述

客户端

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>          /* See NOTES */
#include <sys/socket.h>
#include <time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip.h> /* superset of previous */
#include <arpa/inet.h>
#include <sys/stat.h>
#include <fcntl.h>

typedef struct sockaddr*(SA);

int main(int argc, const char *argv[])
{
	int conn = socket(AF_INET,SOCK_STREAM,0);
	if(-1 == conn)
	{
		perror("conn error!\n");
		exit(1);
	}
	
	struct sockaddr_in ser;
	bzero(&ser,sizeof(ser));
	ser.sin_family = AF_INET;
	ser.sin_port = htons(50000);
	ser.sin_addr.s_addr = inet_addr("192.168.1.139");
	int ret = connect(conn,(SA)&ser,sizeof(ser));
	if(-1 == ret)
	{
		perror("connect error!\n");
		exit(1);
	}
	char buf[1024] = {0};
	int fd = open("/home/linux/11.jpg",O_RDONLY);
	if(-1 == fd)
	{
		perror("open error!\n");
		exit(1);
	}

	while(1)
	{	
		int rd_num = read(fd,buf,1024);
		if(0 == rd_num)
		{
			break;
		}
		send(conn,buf,rd_num,0);
		bzero(buf,sizeof(buf));
	}

	close(fd);
	close(conn);
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59

服务器端

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>          /* See NOTES */
#include <sys/socket.h>
#include <time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip.h> /* superset of previous */
#include <arpa/inet.h>
#include <sys/stat.h>
#include <fcntl.h>


typedef struct sockaddr*(SA);

int main(int argc, const char *argv[])
{
	int listfd = socket(AF_INET,SOCK_STREAM,0);
	if(-1 == listfd)
	{
		perror("socket error!\n");
		exit(1);
	}
	
	struct sockaddr_in ser,cli;
	bzero(&ser,sizeof(ser));
	bzero(&cli,sizeof(cli));
	ser.sin_family = AF_INET;
	ser.sin_port = htons(50000);
	ser.sin_addr.s_addr = INADDR_ANY;
	int ret = bind(listfd,(SA)&ser,sizeof(ser));
	if(-1 == ret)
	{
		perror("bind error!\n");
		exit(1);
	}
	listen(listfd,3);
	int len = sizeof(cli);
	int conn = accept(listfd,(SA)&cli,&len);
	if(-1 == conn)
	{
		perror("accept error!\n");
		exit(1);
	}
	int fd = open("./1.jpg",O_WRONLY|O_CREAT|O_TRUNC,0666);
	if(-1 == fd)
	{
		perror("open error!\n");
		exit(1);
	}
	while(1)
	{
		char buf[1024] = {0};
		int rd = recv(conn,buf,sizeof(buf),0);
		if(0 == rd)//客户端断开退出
		{
			break;
		}
		write(fd,buf,rd);
		bzero(buf,sizeof(buf));
	}
	close(fd);
	close(listfd);
	close(conn);
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/559458
推荐阅读
相关标签
  

闽ICP备14008679号