1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 22 /* 23 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 * 26 */ 27 28 /* $Id: accept.c 146 2006-03-24 00:26:54Z njacobs $ */ 29 30 #pragma ident "%Z%%M% %I% %E% SMI" 31 32 #include <stdio.h> 33 #include <stdlib.h> 34 #include <unistd.h> 35 #include <string.h> 36 #include <locale.h> 37 #include <libintl.h> 38 #include <papi.h> 39 #include "common.h" 40 41 static void 42 usage(char *program) 43 { 44 char *name; 45 46 if ((name = strrchr(program, '/')) == NULL) 47 name = program; 48 else 49 name++; 50 51 fprintf(stdout, 52 gettext("Usage: %s destination ...\n"), 53 name); 54 exit(1); 55 } 56 57 int 58 main(int ac, char *av[]) 59 { 60 papi_status_t status; 61 papi_service_t svc = NULL; 62 papi_encryption_t encryption = PAPI_ENCRYPT_NEVER; 63 int exit_status = 0; 64 int c; 65 66 (void) setlocale(LC_ALL, ""); 67 (void) textdomain("SUNW_OST_OSCMD"); 68 69 while ((c = getopt(ac, av, "E")) != EOF) 70 switch (c) { 71 case 'E': 72 encryption = PAPI_ENCRYPT_ALWAYS; 73 break; 74 default: 75 usage(av[0]); 76 } 77 78 if (ac == optind) 79 usage(av[0]); 80 81 for (c = optind; c < ac; c++) { 82 char *printer = av[c]; 83 84 status = papiServiceCreate(&svc, printer, NULL, NULL, 85 cli_auth_callback, encryption, NULL); 86 if (status != PAPI_OK) { 87 fprintf(stderr, gettext( 88 "Failed to contact service for %s: %s\n"), 89 printer, verbose_papi_message(svc, status)); 90 exit_status = 1; 91 } 92 93 status = papiPrinterResume(svc, printer); 94 if (status != PAPI_OK) { 95 fprintf(stderr, gettext("accept: %s: %s\n"), printer, 96 verbose_papi_message(svc, status)); 97 exit_status = 1; 98 } 99 100 papiServiceDestroy(svc); 101 } 102 103 return (exit_status); 104 } 105