]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/dirsvc.h
Copyright update...
[thirdparty/cups.git] / scheduler / dirsvc.h
CommitLineData
a129ddbd 1/*
efb2f309 2 * "$Id: dirsvc.h,v 1.15 2002/01/02 17:59:15 mike Exp $"
a129ddbd 3 *
fd8b1cf8 4 * Directory services definitions for the Common UNIX Printing System
5 * (CUPS) scheduler.
a129ddbd 6 *
efb2f309 7 * Copyright 1997-2002 by Easy Software Products, all rights reserved.
a129ddbd 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
8784b6a6 18 * 44141 Airport View Drive, Suite 204
a129ddbd 19 * Hollywood, Maryland 20636-3111 USA
20 *
21 * Voice: (301) 373-9603
22 * EMail: cups-info@cups.org
23 * WWW: http://www.cups.org
a129ddbd 24 */
25
1012752f 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
03081fd2 45/*
46 * Relay structure...
47 */
48
49typedef struct
50{
e5ebb675 51 authmask_t from; /* Source address/name mask */
03081fd2 52 struct sockaddr_in to; /* Destination address */
53} dirsvc_relay_t;
54
55
56/*
57 * Polling structure...
58 */
59
60typedef struct
61{
e5ebb675 62 char hostname[16]; /* Hostname (actually, IP address) */
03081fd2 63 int port; /* Port number */
64 int pid; /* Current poll server PID */
65} dirsvc_poll_t;
66
67
fd8b1cf8 68/*
69 * Globals...
70 */
71
72VAR int Browsing VALUE(TRUE),
73 /* Whether or not browsing is enabled */
1012752f 74 BrowseProtocols VALUE(BROWSE_ALL),
75 /* Protocols to support */
d6f1ff9a 76 BrowseShortNames VALUE(TRUE),
77 /* Short names for remote printers? */
d6de4648 78 BrowseSocket VALUE(-1),
79 /* Socket for browsing */
5ff9dbae 80 BrowsePort VALUE(IPP_PORT),
fd8b1cf8 81 /* Port number for broadcasts */
fd8b1cf8 82 BrowseInterval VALUE(DEFAULT_INTERVAL),
83 /* Broadcast interval in seconds */
84 BrowseTimeout VALUE(DEFAULT_TIMEOUT),
85 /* Time out for printers in seconds */
86 NumBrowsers VALUE(0);
87 /* Number of broadcast addresses */
88VAR struct sockaddr_in Browsers[MAX_BROWSERS];
89 /* Broadcast addresses */
03081fd2 90VAR location_t *BrowseACL VALUE(NULL);
91 /* Browser access control list */
92VAR int NumRelays VALUE(0);
93 /* Number of broadcast relays */
94VAR dirsvc_relay_t Relays[MAX_BROWSERS];
95 /* Broadcast relays */
96VAR int NumPolled VALUE(0);
97 /* Number of polled servers */
98VAR dirsvc_poll_t Polled[MAX_BROWSERS];
99 /* Polled servers */
fd8b1cf8 100
1012752f 101#ifdef HAVE_LIBSLP
102VAR SLPHandle BrowseSLPHandle VALUE(NULL);
103 /* SLP API handle */
25d465a4 104VAR time_t BrowseSLPRefresh VALUE(0);
105 /* Next SLP refresh time */
1012752f 106#endif /* HAVE_LIBSLP */
107
fd8b1cf8 108
109/*
110 * Prototypes...
a129ddbd 111 */
112
1012752f 113extern void ProcessBrowseData(const char *uri, cups_ptype_t type,
114 ipp_pstate_t state, const char *location,
115 const char *info, const char *make_model);
25d465a4 116extern void SendBrowseList(void);
1012752f 117extern void SendCUPSBrowse(printer_t *p);
118extern void SendSLPBrowse(printer_t *p);
fd8b1cf8 119extern void StartBrowsing(void);
03081fd2 120extern void StartPolling(void);
1012752f 121extern void StopBrowsing(void);
03081fd2 122extern void StopPolling(void);
1012752f 123extern void UpdateCUPSBrowse(void);
124extern void UpdateSLPBrowse(void);
03081fd2 125
a129ddbd 126
127/*
efb2f309 128 * End of "$Id: dirsvc.h,v 1.15 2002/01/02 17:59:15 mike Exp $".
a129ddbd 129 */