X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FGapil.h;h=dc421f44e1c91f2333305d7712c4fc8e004dcff9;hp=90ed7d867c7a51015af360caf0c03da08f4dde4d;hb=265547995607b3ec2c04f9b8b035b416e892920b;hpb=de83478a4dec2c8dd1b3721c4548b8d902555566 diff --git a/sources/Gapil.h b/sources/Gapil.h index 90ed7d8..dc421f4 100644 --- a/sources/Gapil.h +++ b/sources/Gapil.h @@ -23,7 +23,7 @@ * * Author: S. Piccardi * - * $Id: Gapil.h,v 1.8 2003/02/26 21:37:36 piccardi Exp $ + * $Id: Gapil.h,v 1.12 2003/08/16 18:30:21 piccardi Exp $ * *****************************************************************************/ #include /* IPC semaphore declarations */ @@ -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 @@ -91,20 +92,26 @@ inline int UnlockFile(const char* path_name); typedef void SigFunc(int); /* Function Signal: Initialize a signal handler. See SigHand.c */ SigFunc * Signal(int signo, SigFunc *func); +/* Function SignalRestart: restart system calls. See SigHand.c */ +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 */ -/* Function DirScan: simple scan for a directory. See DirScan.c */ -int DirScan(char * dirname, int(*compute)(struct dirent *)); +/* Function dir_scan: simple scan for a directory. See dir_scan.c */ +int dir_scan(char * dirname, int(*compute)(struct dirent *)); /* * Shared memory handling functions. See SharedMem.c */ @@ -120,3 +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);