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