找回密码
 立即注册
查看: 434|回复: 0

[linux] 网络编程套接字详解

[复制链接]

279

主题

0

回帖

964

积分

超级版主

积分
964
发表于 2024-5-25 12:34:04 | 显示全部楼层 |阅读模式
本帖最后由 Shaw0xyz 于 2024-5-25 13:05 编辑

1. 概述

网络编程是现代应用程序开发的基础,而套接字 (Socket) 是网络通信的核心。本文将详细介绍linux网络编程中的套接字,包括基本概念、常用函数以及实际案例。

2. 套接字基本概念

2.1. 什么是套接字

套接字是网络通信的端点,提供了应用程序之间在网络上传输数据的机制。它可以用于不同主机之间的通信,也可以用于同一主机上不同进程之间的通信。

2.2. 套接字类型

套接字主要分为以下几种类型:

- 流套接字 (SOCK_STREAM):提供面向连接的、可靠的字节流服务。典型协议是TCP。
- 数据报套接字 (SOCK_DGRAM):提供无连接的、不可靠的消息服务。典型协议是UDP。

2.3. 套接字地址

套接字地址包括IP地址和端口号。IP地址用于标识主机,端口号用于标识主机上的特定进程。

3. 套接字编程步骤

3.1. 创建套接字

使用`socket()`函数创建套接字。


  1. int sockfd = socket(AF_INET, SOCK_STREAM, 0);
  2. if (sockfd < 0) {
  3.     perror("socket");
  4.     exit(EXIT_FAILURE);
  5. }
复制代码



#3.2. 绑定地址

使用`bind()`函数将套接字绑定到特定地址和端口。


  1. struct sockaddr_in server_addr;
  2. server_addr.sin_family = AF_INET;
  3. server_addr.sin_addr.s_addr = INADDR_ANY;
  4. server_addr.sin_port = htons(8080);

  5. if (bind(sockfd, (struct sockaddr *)&server_addr, sizeof(server_addr)) < 0) {
  6.     perror("bind");
  7.     exit(EXIT_FAILURE);
  8. }
复制代码



#3.3. 监听和接受连接

对于流套接字,需要使用`listen()`函数监听连接请求,使用`accept()`函数接受连接。


  1. if (listen(sockfd, 5) < 0) {
  2.     perror("listen");
  3.     exit(EXIT_FAILURE);
  4. }

  5. int client_sockfd = accept(sockfd, NULL, NULL);
  6. if (client_sockfd < 0) {
  7.     perror("accept");
  8.     exit(EXIT_FAILURE);
  9. }
复制代码



#3.4. 发送和接收数据

使用`send()`和`recv()`函数发送和接收数据。


  1. char buffer[1024];
  2. int bytes_received = recv(client_sockfd, buffer, sizeof(buffer), 0);
  3. if (bytes_received < 0) {
  4.     perror("recv");
  5.     exit(EXIT_FAILURE);
  6. }

  7. const char *message = "Hello, Client!";
  8. int bytes_sent = send(client_sockfd, message, strlen(message), 0);
  9. if (bytes_sent < 0) {
  10.     perror("send");
  11.     exit(EXIT_FAILURE);
  12. }
复制代码



#3.5. 关闭套接字

通信完成后,使用`close()`函数关闭套接字。


  1. close(client_sockfd);
  2. close(sockfd);
复制代码


4. 实际案例

#4.1. TCP服务器示例

以下是一个简单的TCP服务器示例,接受客户端连接并发送欢迎消息。


  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <unistd.h>
  5. #include <arpa/inet.h>

  6. int main() {
  7.     int sockfd = socket(AF_INET, SOCK_STREAM, 0);
  8.     if (sockfd < 0) {
  9.         perror("socket");
  10.         exit(EXIT_FAILURE);
  11.     }

  12.     struct sockaddr_in server_addr;
  13.     server_addr.sin_family = AF_INET;
  14.     server_addr.sin_addr.s_addr = INADDR_ANY;
  15.     server_addr.sin_port = htons(8080);

  16.     if (bind(sockfd, (struct sockaddr *)&server_addr, sizeof(server_addr)) < 0) {
  17.         perror("bind");
  18.         exit(EXIT_FAILURE);
  19.     }

  20.     if (listen(sockfd, 5) < 0) {
  21.         perror("listen");
  22.         exit(EXIT_FAILURE);
  23.     }

  24.     printf("Server listening on port 8080...\n");

  25.     int client_sockfd = accept(sockfd, NULL, NULL);
  26.     if (client_sockfd < 0) {
  27.         perror("accept");
  28.         exit(EXIT_FAILURE);
  29.     }

  30.     const char *message = "Welcome to the server!";
  31.     if (send(client_sockfd, message, strlen(message), 0) < 0) {
  32.         perror("send");
  33.         exit(EXIT_FAILURE);
  34.     }

  35.     close(client_sockfd);
  36.     close(sockfd);

  37.     return 0;
  38. }
复制代码



#4.2. TCP客户端示例

以下是一个简单的TCP客户端示例,连接服务器并接收消息。


  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <unistd.h>
  5. #include <arpa/inet.h>

  6. int main() {
  7.     int sockfd = socket(AF_INET, SOCK_STREAM, 0);
  8.     if (sockfd < 0) {
  9.         perror("socket");
  10.         exit(EXIT_FAILURE);
  11.     }

  12.     struct sockaddr_in server_addr;
  13.     server_addr.sin_family = AF_INET;
  14.     server_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
  15.     server_addr.sin_port = htons(8080);

  16.     if (connect(sockfd, (struct sockaddr *)&server_addr, sizeof(server_addr)) < 0) {
  17.         perror("connect");
  18.         exit(EXIT_FAILURE);
  19.     }

  20.     char buffer[1024];
  21.     if (recv(sockfd, buffer, sizeof(buffer), 0) < 0) {
  22.         perror("recv");
  23.         exit(EXIT_FAILURE);
  24.     }

  25.     printf("Received message: %s\n", buffer);

  26.     close(sockfd);

  27.     return 0;
  28. }

复制代码

5. 总结

通过本文,你应该对Linux网络编程中的套接字有了基本了解。套接字提供了强大的网络通信能力,可以用于构建各种网络应用程序。掌握套接字编程,可以让你在开发网络应用时游刃有余。希望这些示例代码能帮助你快速上手套接字编程,并应用到实际项目中。

荔枝学姐爱吃荔枝!
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

联系站长|Archiver|手机版|小黑屋|主机论坛

GMT+8, 2025-4-5 02:46 , Processed in 0.076816 second(s), 24 queries .

Powered by 主机论坛 HostSsss.Com

HostSsss.Com

快速回复 返回顶部 返回列表