DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T p

⟦5276fa636⟧ TextFile

    Length: 533 (0x215)
    Types: TextFile
    Names: »ppp.h«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« 
        └─⟦e5a54fb17⟧ 
            └─⟦this⟧ »pp-5.0/h/ppp.h« 

TextFile

/* ppp.h: ppp interface */

/*
 * @(#) $Header: /cs/research/pp/hubris/pp-beta/h/RCS/ppp.h,v 5.0 90/09/20 16:50:48 pp Exp Locker: pp $
 *
 * $Log:	ppp.h,v $
 * Revision 5.0  90/09/20  16:50:48  pp
 * rcsforce : 5.0 public release
 * 
 *
 */



#ifndef _H_PPP
#define _H_PPP

#define	PPP_STATUS_DONE			1
#define PPP_STATUS_CONNECT_FAILED	2
#define PPP_STATUS_PERMANENT_FAILURE	3
#define PPP_STATUS_TRANSIENT_FAILURE	4

int	ppp_init ();
int	ppp_getnextmessage ();
int	ppp_getdata ();
int	ppp_status ();
void	ppp_terminate ();


#endif