]> git.ipfire.org Git - thirdparty/cups.git/blob - scheduler/dirsvc.h
The scheduler used a select() timeout of INT_MAX seconds when
[thirdparty/cups.git] / scheduler / dirsvc.h
1 /*
2 * "$Id: dirsvc.h,v 1.22 2004/08/23 18:00:59 mike Exp $"
3 *
4 * Directory services definitions for the Common UNIX Printing System
5 * (CUPS) scheduler.
6 *
7 * Copyright 1997-2004 by Easy Software Products, all rights reserved.
8 *
9 * These coded instructions, statements, and computer programs are the
10 * property of Easy Software Products and are protected by Federal
11 * copyright law. Distribution and use rights are outlined in the file
12 * "LICENSE.txt" which should have been included with this file. If this
13 * file is missing or damaged please contact Easy Software Products
14 * at:
15 *
16 * Attn: CUPS Licensing Information
17 * Easy Software Products
18 * 44141 Airport View Drive, Suite 204
19 * Hollywood, Maryland 20636 USA
20 *
21 * Voice: (301) 373-9600
22 * EMail: cups-info@cups.org
23 * WWW: http://www.cups.org
24 */
25
26 /*
27 * Include necessary headers...
28 */
29
30 #ifdef HAVE_LIBSLP
31 # include <slp.h>
32 #endif /* HAVE_LIBSLP */
33
34
35 /*
36 * Browse protocols...
37 */
38
39 #define BROWSE_CUPS 1 /* CUPS */
40 #define BROWSE_SLP 2 /* SLPv2 */
41 #define BROWSE_LDAP 4 /* LDAP (not supported yet) */
42 #define BROWSE_ALL 7 /* All protocols */
43
44
45 /*
46 * Browse address...
47 */
48
49 typedef struct
50 {
51 char iface[32]; /* Destination interface */
52 struct sockaddr_in to; /* Destination address */
53 } dirsvc_addr_t;
54
55
56 /*
57 * Relay structure...
58 */
59
60 typedef struct
61 {
62 authmask_t from; /* Source address/name mask */
63 struct sockaddr_in to; /* Destination address */
64 } dirsvc_relay_t;
65
66
67 /*
68 * Polling structure...
69 */
70
71 typedef struct
72 {
73 char hostname[16]; /* Hostname (actually, IP address) */
74 int port; /* Port number */
75 int pid; /* Current poll server PID */
76 } dirsvc_poll_t;
77
78
79 /*
80 * Globals...
81 */
82
83 VAR int Browsing VALUE(TRUE),
84 /* Whether or not browsing is enabled */
85 BrowseProtocols VALUE(BROWSE_ALL),
86 /* Protocols to support */
87 BrowseShortNames VALUE(TRUE),
88 /* Short names for remote printers? */
89 BrowseSocket VALUE(-1),
90 /* Socket for browsing */
91 BrowsePort VALUE(IPP_PORT),
92 /* Port number for broadcasts */
93 BrowseInterval VALUE(DEFAULT_INTERVAL),
94 /* Broadcast interval in seconds */
95 BrowseTimeout VALUE(DEFAULT_TIMEOUT),
96 /* Time out for printers in seconds */
97 NumBrowsers VALUE(0);
98 /* Number of broadcast addresses */
99 VAR dirsvc_addr_t *Browsers VALUE(NULL);
100 /* Broadcast addresses */
101 VAR location_t *BrowseACL VALUE(NULL);
102 /* Browser access control list */
103 VAR printer_t *BrowseNext VALUE(NULL);
104 /* Next class/printer to broadcast */
105 VAR int NumRelays VALUE(0);
106 /* Number of broadcast relays */
107 VAR dirsvc_relay_t *Relays VALUE(NULL);
108 /* Broadcast relays */
109 VAR int NumPolled VALUE(0);
110 /* Number of polled servers */
111 VAR dirsvc_poll_t *Polled VALUE(NULL);
112 /* Polled servers */
113 VAR int PollPipe VALUE(0);
114 /* Status pipe for pollers */
115
116 #ifdef HAVE_LIBSLP
117 VAR SLPHandle BrowseSLPHandle VALUE(NULL);
118 /* SLP API handle */
119 VAR time_t BrowseSLPRefresh VALUE(0);
120 /* Next SLP refresh time */
121 #endif /* HAVE_LIBSLP */
122
123
124 /*
125 * Prototypes...
126 */
127
128 extern void ProcessBrowseData(const char *uri, cups_ptype_t type,
129 ipp_pstate_t state, const char *location,
130 const char *info, const char *make_model);
131 extern void SendBrowseList(void);
132 extern void SendCUPSBrowse(printer_t *p);
133 extern void SendSLPBrowse(printer_t *p);
134 extern void StartBrowsing(void);
135 extern void StartPolling(void);
136 extern void StopBrowsing(void);
137 extern void StopPolling(void);
138 extern void UpdateCUPSBrowse(void);
139 extern void UpdatePolling(void);
140 extern void UpdateSLPBrowse(void);
141
142
143 /*
144 * End of "$Id: dirsvc.h,v 1.22 2004/08/23 18:00:59 mike Exp $".
145 */