home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / n / tcpip / netkit-a.06 / netkit-a / NetKit-A-0.06 / dip337d-uri / ppp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-16  |  644 b   |  24 lines

  1. /*
  2.  * dip        A program for handling dialup IP connecions.
  3.  *        This module handles the PPP protocol.
  4.  *
  5.  * Version:    @(#)ppp.c    3.3.3    08/16/93
  6.  *
  7.  * Author:      Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  8.  *        Copyright 1988-1993 MicroWalt Corporation
  9.  *
  10.  *        This program is free software; you can redistribute it
  11.  *        and/or  modify it under  the terms of  the GNU General
  12.  *        Public  License as  published  by  the  Free  Software
  13.  *        Foundation;  either  version 2 of the License, or  (at
  14.  *        your option) any later version.
  15.  */
  16. #include "dip.h"
  17.  
  18.  
  19. void
  20. do_ppp(struct dip *dip)
  21. {
  22.   fprintf(stderr, "DIP: PPP protocol not available yet.\n");
  23. }
  24.