mirror of
https://github.com/ecki/net-tools.git
synced 2025-04-06 15:44:22 +00:00
57 lines
1.4 KiB
C
57 lines
1.4 KiB
C
/*
|
|
* lib/ppp.c This file contains the SLIP support for the NET-2 base
|
|
* distribution.
|
|
*
|
|
* Version: $Id: ppp.c,v 1.4 2000/03/05 11:26:03 philip Exp $
|
|
*
|
|
* Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
|
|
* Copyright 1993 MicroWalt Corporation
|
|
*
|
|
* Modified by Alan Cox, May 94 to cover NET-3
|
|
*
|
|
* Changes:
|
|
* 980701 {1.12} 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"
|
|
|
|
#if HAVE_HWPPP
|
|
|
|
#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"
|
|
#include "intl.h"
|
|
|
|
/* Start the PPP encapsulation on the file descriptor. */
|
|
static int do_ppp(int fd)
|
|
{
|
|
fprintf(stderr, _("You cannot start PPP with this program.\n"));
|
|
return -1;
|
|
}
|
|
|
|
|
|
struct hwtype ppp_hwtype =
|
|
{
|
|
"ppp", NULL, /*"Point-Point Protocol", */ ARPHRD_PPP, 0,
|
|
NULL, NULL, do_ppp, 0
|
|
};
|
|
|
|
|
|
#endif /* HAVE_PPP */
|