]> Pileus Git - ~andy/fetchmail/blob - socket.h
Merge commit 'refs/merge-requests/1' of gitorious.org:fetchmail/fetchmail into integr...
[~andy/fetchmail] / socket.h
1 /**
2  * \file socket.h -- declarations for socket library functions
3  *
4  * For license terms, see the file COPYING in this directory.
5  */
6
7 #ifndef SOCKET__
8 #define SOCKET__
9
10 struct addrinfo;
11
12 #include <config.h>
13 #include <sys/socket.h>
14 #include <netdb.h>
15
16 /** Create a new client socket; returns -1 on error */
17 int SockOpen(const char *host, const char *service, const char *plugin, struct addrinfo **);
18
19 /** Returns 1 if socket \a fd is OK, 0 if it isn't select()able
20  * on - probably because it's been closed. You should
21  * always check this function before passing stuff to the
22  * select()-based waiter, as otherwise it may loop. 
23  */
24 int SockCheckOpen(int fd);
25
26 /** 
27 Get a string terminated by an '\n' (matches interface of fgets).
28 Pass it a valid socket, a buffer for the string, and
29 the length of the buffer (including the trailing \0)
30 returns length of buffer on success, -1 on failure. 
31 */
32 int SockRead(int sock, char *buf, int len);
33
34 /**
35  * Peek at the next socket character without actually reading it.
36  */
37 int SockPeek(int sock);
38
39 /**
40 Write a chunk of bytes to the socket (matches interface of fwrite).
41 Returns number of bytes successfully written.
42 */
43 int SockWrite(int sock, const char *buf, int size);
44
45 /* from /usr/include/sys/cdefs.h */
46 #if !defined __GNUC__
47 # define __attribute__(xyz)    /* Ignore. */
48 #endif
49
50 /**
51 Send formatted output to the socket (matches interface of fprintf).
52 Returns number of bytes successfully written.
53 */
54 int SockPrintf(int sock, const char *format, ...)
55     __attribute__ ((format (printf, 2, 3)))
56     ;
57  
58 /**
59 Close a socket previously opened by SockOpen.  This allows for some
60 additional clean-up if necessary.
61 */
62 int SockClose(int sock);
63
64 /**
65  \todo document this
66 */
67 int UnixOpen(const char *path);
68
69 #ifdef SSL_ENABLE
70 int SSLOpen(int sock, char *mycert, char *mykey, const char *myproto, int certck, char *cacertfile, char *cacertpath,
71     char *fingerprint, char *servercname, char *label, char **remotename);
72 #endif /* SSL_ENABLE */
73
74 #endif /* SOCKET__ */