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

📄 econet.c

📁 Linux下网络相关工具源代码。
💻 C
字号:
/* * lib/econet.c       This file contains an implementation of the Econet *              support functions for the net-tools. *              (NET-3 base distribution). * * Version:     $Id: econet.c,v 1.8 1999/04/20 13:31:50 philip Exp $ * * Author:      Philip Blundell <philb@gnu.org> * * Modified: * *              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"#if HAVE_AFECONET#include <sys/types.h>#include <sys/socket.h>#include <stdio.h>#include <neteconet/ec.h>#include "version.h"#include "net-support.h"#include "pathnames.h"#include "intl.h"/* Display an Econet address */static char * ec_print(unsigned char *ptr){    static char buff[64];    struct ec_addr *ec = (struct ec_addr *) ptr;    sprintf(buff, "%d.%d", ec->net, ec->station);    return buff;}/* Display an Econet socket address */static char * ec_sprint(struct sockaddr *sap, int numeric){    struct sockaddr_ec *sec = (struct sockaddr_ec *) sap;    if (sap->sa_family != AF_ECONET)	return _("[NONE SET]");    return ec_print((unsigned char *) &sec->addr);}static int ec_input(int type, char *bufp, struct sockaddr *sap){    struct sockaddr_ec *sec = (struct sockaddr_ec *) sap;    int net, stn;    switch (sscanf(bufp, "%d.%d", &net, &stn)) {    case 2:	sec->addr.station = stn;	sec->addr.net = net;	return 0;    case 1:	if (sscanf(bufp, "%d", &stn) == 1) {	    sec->addr.net = 0;	    sec->addr.station = stn;	    return 0;	}    }    return -1;}struct aftype ec_aftype ={    "ec", NULL, AF_ECONET, 0,    ec_print, ec_sprint, ec_input, NULL,    NULL, NULL, NULL,    -1,    "/proc/sys/net/econet"};#endif				/* HAVE_AFECONET */

⌨️ 快捷键说明

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