~ubuntu-branches/ubuntu/saucy/nut/saucy

« back to all changes in this revision

Viewing changes to server/ctype.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2005-07-20 19:48:50 UTC
  • mto: (16.1.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20050720194850-oo61wjr33rrx2mre
Tags: upstream-2.0.2
ImportĀ upstreamĀ versionĀ 2.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <openssl/ssl.h>
26
26
#endif
27
27
 
 
28
#include "parseconf.h"
 
29
 
28
30
/* client structure */
29
31
typedef struct {
30
32
        char    *addr;
31
33
        int     fd;
 
34
        int     delete;                 /* set after a write fails */
32
35
        struct sockaddr_in sock;
33
36
        char    rq[SMALLBUF];
34
 
        int     rqpos;
 
37
        size_t  rqpos;
35
38
        char    *loginups;
36
39
        char    *password;
37
40
        char    *username;
43
46
#endif
44
47
        int     ssl_connected;
45
48
 
 
49
        PCONF_CTX       ctx;
 
50
 
46
51
        void    *next;
47
52
}       ctype;
48
53