/
githubmirror
/
net-tools
Обзор
Документация
Войти
/
githubmirror
/
net-tools
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/ppp_ac.c
41 строка
1 KB
Bernd Eckenfels
passes -Wunused-parameter
12 май 2026, 04:34
12 май 2026, 04:34
e1e5bcc
Код
Авторство
О чём код?
/* * lib/ppp_ac.c This file contains the activation for the * PPP line disciplines, called from activate_ld(). * * Author: Bernd 'eckes' Eckenfels * * 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 VJ-SLIP encapsulation on the file descriptor. */ int PPP_activate(int fd) { (void)fd; /* unused */ fprintf(stderr, _("Sorry, use pppd!\n")); /* FIXME */ return (-1); } #endif /* HAVE_HWPPP */