X-Git-Url: https://gapil.gnulinux.it/gitweb/?a=blobdiff_plain;f=sources%2FGapil.h;h=b83fefd5a0a89c101ac906e20e5e1c6081743375;hb=affaf73ebd2ee75be4a08945d1f8e797128eb398;hp=c6cbfea4d91b4294968e2f9a143cbc8caa816f05;hpb=684f52a149bb07baec157b7f203af37444a708a1;p=gapil.git diff --git a/sources/Gapil.h b/sources/Gapil.h index c6cbfea..b83fefd 100644 --- a/sources/Gapil.h +++ b/sources/Gapil.h @@ -34,6 +34,7 @@ #include /* file control (lock) functions */ #include /* signal handling declarations */ #include /* directory scan functions */ +#include /* include standard I/O library */ /* * Definition of semun struct; used to implement a MutexXXXX API To * create a Mutex use an underlaying semaphore and init it; we put @@ -96,12 +97,16 @@ SigFunc * SignalRestart(int signo, SigFunc *func); /* Function HandSigCHLD: to handle SIGCHILD. See SigHand.c */ void HandSigCHLD(int sig); /* - * Socket service functions + * Socket/Files service functions */ /* Function FullRead: to read from a socket. See FullRead.c */ ssize_t FullRead(int fd, void *buf, size_t count); /* Function FullWrite: to read from a socket. See FullWrite.c */ ssize_t FullWrite(int fd, const void *buf, size_t count); +/* Function full_fread: to read from a standard file. See full_fread.c */ +size_t full_fread(FILE *file, void *buf, size_t count); +/* Function full_fwrite: to write from a standard file. See full_fwrite.c */ +size_t full_fwrite(FILE *file, void *buf, size_t count); /* * File miscellaneous */ @@ -122,7 +127,15 @@ void * CreateShm(char * shm_name, off_t shm_size, int perm, int fill); void * FindShm(char * shm_name, off_t shm_size); /* Function RemoveShm: remove a POSIX shared memory */ int RemoveShm(char * shm_name); +/* + * Socket creation functions. See corresponding .c + */ +int sockconn(char *host, char *serv, int prot, int type); +int sockbind(char *host, char *serv, int prot, int type); +int sockbindopt(char *host, char *serv, int prot, int type, int reuse); + /* * General purpose functions. See corresponding .c */ int endian(void); +int is_closing(int sock);