home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.wwiv.com
/
ftp.wwiv.com.zip
/
ftp.wwiv.com
/
pub
/
PPPBCKP
/
SRC
/
SRC15B98.ZIP
/
WATTSRC.ZIP
/
SOCK_INI.C
< prev
next >
Wrap
Text File
|
1994-11-28
|
922b
|
41 lines
/*
* sock_init - easy way to guarentee:
* - card is ready
* - shutdown is handled
* - cbreaks are handled
* - config file is read
* - bootp is run
*
* 0.1 : May 2, 1991 Erick - reorganized operations
*/
#include <copyright.h>
#include <wattcp.h>
#include <stdlib.h>
int _survivebootp = 0;
void sock_exit( void )
{
tcp_shutdown();
}
void sock_init(void )
{
tcp_init(); /* must precede tcp_config because we need eth addr */
atexit(sock_exit); /* must not precede tcp_init() incase no PD */
tcp_cbrk( 0x10 ); /* allow control breaks, give message */
if (tcp_config( NULL )) { /* if no config file use BOOTP w/broadcast */
_bootpon = 1;
outs("Configuring through BOOTP\r\n");
}
if (_bootpon) /* non-zero if we use bootp */
if (_dobootp()) {
outs("BOOTP failed\r\n");
if ( !_survivebootp )
exit( 3 );
}
}