Home | History | Annotate | Download | only in cups

Lines Matching refs:cupsd

844   cups_file_t	*cupsd;			/* cupsd.conf file */
845 char cupsdconf[1024]; /* cupsd.conf filename */
846 int remote; /* Remote cupsd.conf file? */
847 http_status_t status; /* Status of getting cupsd.conf */
848 char line[1024], /* Line from cupsd.conf file */
931 * Get the cupsd.conf file...
937 if ((cupsd = cupsFileOpen(cupsdconf, "r")) == NULL)
949 cupsd = NULL;
951 if (cupsd)
975 while (cupsFileGetConf(cupsd, line, sizeof(line), &value, &linenum))
1098 cupsFileClose(cupsd);
1163 cups_file_t *cupsd; /* cupsd.conf file */
1164 char cupsdconf[1024]; /* cupsd.conf filename */
1165 int remote; /* Remote cupsd.conf file? */
1166 char tempfile[1024]; /* Temporary new cupsd.conf */
1168 char line[1024], /* Line from cupsd.conf file */
1220 * Get the cupsd.conf file...
1226 if ((cupsd = cupsFileOpen(cupsdconf, "r")) == NULL)
1393 * Create a temporary file for the new cupsd.conf file...
1398 cupsFileClose(cupsd);
1442 while (cupsFileGetConf(cupsd, line, sizeof(line), &value, &linenum))
1991 cupsFileClose(cupsd);
1998 status = cupsPutFile(http, "/admin/conf/cupsd.conf", tempfile);
2162 * 'get_cupsd_conf()' - Get the current cupsd.conf file.
2176 struct stat info; /* cupsd.conf file information */
2178 http_status_t status; /* Status of getting cupsd.conf */
2191 snprintf(name, namesize, "%s/cupsd.conf", cg->cups_serverroot);
2224 * Read cupsd.conf via a HTTP GET request...
2246 status = cupsGetFd(http, "/admin/conf/cupsd.conf", fd);
2262 * 'invalidate_cupsd_cache()' - Invalidate the cached cupsd.conf settings.