⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 loopback.c

📁 Linux下网络相关工具源代码。
💻 C
字号:
/* * lib/loopback.c     This file contains the general hardware types. * * Version:     $Id: loopback.c,v 1.6 1999/04/04 21:37:04 philip Exp $ * * Author:      Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org> *              Copyright 1993 MicroWalt Corporation * * Modifications: * 1998-07-01 - Arnaldo Carvalho de Melo - GNU gettext instead of catgets * *              This program is free software; you can redistribute it *              and/or  modify it under  the terms of  the GNU General *              Public  License as  published  by  the  Free  Software *              Foundation;  either  version 2 of the License, or  (at *              your option) any later version. */#include "config.h"#include <sys/types.h>#include <sys/socket.h>#include <net/if_arp.h>#include <stdlib.h>#include <stdio.h>#include <errno.h>#include <ctype.h>#include <string.h>#include <unistd.h>#include "net-support.h"#include "pathnames.h"#include "intl.h"#include "util.h"/* Display an UNSPEC address. */static char *pr_unspec(unsigned char *ptr){    static char buff[64];    char *pos;    unsigned int i;    pos = buff;    for (i = 0; i < sizeof(struct sockaddr); i++) {	pos += sprintf(pos, "%02X-", (*ptr++ & 0377));    }    buff[strlen(buff) - 1] = '\0';    return (buff);}/* Display an UNSPEC socket address. */static char *pr_sunspec(struct sockaddr *sap){    static char buf[64];    if (sap->sa_family == 0xFFFF || sap->sa_family == 0)	return safe_strncpy(buf, _("[NONE SET]"), sizeof(buf));    return (pr_unspec(sap->sa_data));}struct hwtype unspec_hwtype ={    "unspec", NULL, /*"UNSPEC", */ -1, 0,    pr_unspec, pr_sunspec, NULL, NULL};struct hwtype loop_hwtype ={    "loop", NULL, /*"Local Loopback", */ ARPHRD_LOOPBACK, 0,    NULL, NULL, NULL, NULL};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -