This is a (mostly) unmodified version of lib/libnet broken up into functional areas It should be binary compatible with the lib created by lib/libnet but is now 10 libs. The only substantial things changed in the version is the include files git-svn-id: svn://10.0.0.236/trunk@931 18797224-902f-48f8-a5cc-f745e15eee43
38 lines
720 B
C
38 lines
720 B
C
|
|
|
|
#include "xp.h"
|
|
#include "netutils.h"
|
|
#include "mkselect.h"
|
|
#include "mktcp.h"
|
|
#include "mkgeturl.h"
|
|
|
|
#include "fileurl.h"
|
|
#include "httpurl.h"
|
|
#include "ftpurl.h"
|
|
#include "abouturl.h"
|
|
#include "gophurl.h"
|
|
#include "jsurl.h"
|
|
#include "fileurl.h"
|
|
#include "remoturl.h"
|
|
#include "dataurl.h"
|
|
#include "netcache.h"
|
|
|
|
PUBLIC void
|
|
NET_ClientProtocolInitialize(void)
|
|
{
|
|
|
|
NET_InitFileProtocol();
|
|
NET_InitHTTPProtocol();
|
|
NET_InitMemCacProtocol();
|
|
NET_InitFTPProtocol();
|
|
NET_InitAboutProtocol();
|
|
NET_InitGopherProtocol();
|
|
NET_InitMochaProtocol();
|
|
NET_InitRemoteProtocol();
|
|
NET_InitDataURLProtocol();
|
|
|
|
#ifdef JAVA
|
|
NET_InitMarimbaProtocol();
|
|
#endif
|
|
}
|