frame.c

来自「Linux下网络相关工具源代码。」· C语言 代码 · 共 60 行

C
60
字号
/* * lib/frame.c        This file contains the Frame Relay support. * * Version:     $Id: frame.c,v 1.3 1998/11/15 20:09:39 freitag Exp $ * * Maintainer:  Bernd 'eckes' Eckenfels, <net-tools@lina.inka.de> * * Author:      Mike McLagan <mike.mclagan@linux.org> * * Changes: * *962303 {0.01} Mike McLagan :          creation *960413 {0.02} Bernd Eckenfels :       included in net-lib * *              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_HWFR#include <sys/types.h>#include <sys/ioctl.h>#include <sys/socket.h>#include <net/if_arp.h>#include <stdlib.h>#include <stdio.h>#include <ctype.h>#include <errno.h>#include <fcntl.h>#include <string.h>#include <termios.h>#include <unistd.h>#include "net-support.h"#include "pathnames.h"char *pr_dlci(unsigned char *ptr){    static char buf[12];    snprintf(buf, sizeof(buf), "%i", *(short *) ptr);    return (buf);}struct hwtype dlci_hwtype ={    "dlci", NULL, /*"Frame Relay DLCI", */ ARPHRD_DLCI, 3,    pr_dlci, NULL, NULL, NULL};struct hwtype frad_hwtype ={    "frad", NULL, /*"Frame Relay Access Device", */ ARPHRD_FRAD, 0,    NULL, NULL, NULL, NULL};#endif				/* HAVE_HWFR */

⌨️ 快捷键说明

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