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 c

⟦0f161e8ce⟧ TextFile

    Length: 595 (0x253)
    Types: TextFile
    Names: »conf_chan.add«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦3658e588a⟧ »EurOpenD3/mail/mh/mh-6.7.tar.Z« 
        └─⟦c75e36ecb⟧ 
            └─⟦this⟧ »mh-6.7/zotnet/mf/mmdfI/src/conf_chan.add« 

TextFile

/* additions to conf_chan.c for UUCP support */

/* 1.  Add this structure after the definition for ch_sloc */

Chan	ch_sbboards = {
    'c', DLVRREG, "ch_uucp", 
	 "UUCP", "uucp", "uucp.names",
	 locname, "UUCP", NOLOGIN, NOPHONE, 0, 0l
};


/* 2.  Add &ch_suucp to ch_tbsrch[] after &ch_sloc */

Chan * ch_tbsrch[] =		  /* order chan tables searched         */
{
	&ch_sloc,
	&ch_suucp,
/* ... */
	(Chan *) 0
};


/* 3.  Add &ch_suucp to ch_exsrch[] after &ch_sloc */

Chan * ch_exsrch[] =              /* order of active chan execution     */
{
	&ch_sloc,
	&ch_suucp,
/* ... */
	(Chan *) 0
};