ipv4 options - Record route

这个源码示例展示了如何在TCP客户端中设置源路由选项。程序接收命令行参数,通过`-g`或`-G`指定严格的源路由或宽松的源路由,并添加沿途的IP地址。它创建一个TCP套接字,连接到指定服务器,然后发送数据。实验部分运行了带源路由的客户端,指定了两个IP地址。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1. 源码示例 

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <arpa/inet.h>


static unsigned char *optr;	/* pointer into options being formed */
static unsigned char *lenptr;	/* pointer to length byte in SRR option */
static int ocnt;		/* count of # addresses */

static unsigned char *inet_srcrt_init(int type)
{
	optr = malloc(44);		/* NOP, code, len, ptr, up to 10 addresses */
	if (!optr) {
		printf("malloc faild!\n");
		return NULL;
	}

	memset(optr, 0x00, 44);		/* guarantees EOLs at end */
	ocnt = 0;
	*optr++ = IPOPT_NOP;		/* NOP for alignment */
	*optr++ = type ? IPOPT_SSRR : IPOPT_LSRR;
	lenptr = optr++;		/* we fill in length later */
	*optr++ = 4;			/* offset to first address */

	return(optr - 4);		/* pointer for setsockopt() */
}

static int in
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值