This repository has been archived on 2024-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
ncsa-mosaic/src/cciServer.h

19 lines
352 B
C

#ifndef __CCISERVER_H__
#define __CCISERVER_H__
#include "cci.h"
extern int MCCIServerInitialize();
extern MCCIPort MCCICheckAndAcceptConnection();
extern int MCCISendResponseLine();
extern int MCCIIsThereInput();
extern int MCCIReadInputMessage();
typedef struct {
MCCIPort client;
int status;
char *url;
} cciStat; /* ejb 03/09/95 */
#endif