1 /* 2 * 3 * BlueZ - Bluetooth protocol stack for Linux 4 * 5 * Copyright (C) 2003-2010 Marcel Holtmann <marcel@holtmann.org> 6 * 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License as published by 10 * the Free Software Foundation; either version 2 of the License, or 11 * (at your option) any later version. 12 * 13 * This program is distributed in the hope that it will be useful, 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 * GNU General Public License for more details. 17 * 18 * You should have received a copy of the GNU General Public License 19 * along with this program; if not, write to the Free Software 20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 21 * 22 */ 23 24 enum { /**** Backend exit codes ****/ 25 CUPS_BACKEND_OK = 0, /* Job completed successfully */ 26 CUPS_BACKEND_FAILED = 1, /* Job failed, use error-policy */ 27 CUPS_BACKEND_AUTH_REQUIRED = 2, /* Job failed, authentication required */ 28 CUPS_BACKEND_HOLD = 3, /* Job failed, hold job */ 29 CUPS_BACKEND_STOP = 4, /* Job failed, stop queue */ 30 CUPS_BACKEND_CANCEL = 5, /* Job failed, cancel job */ 31 CUPS_BACKEND_RETRY = 6, /* Failure requires us to retry (BlueZ specific) */ 32 }; 33 34 int sdp_search_spp(sdp_session_t *sdp, uint8_t *channel); 35 int sdp_search_hcrp(sdp_session_t *sdp, unsigned short *ctrl_psm, unsigned short *data_psm); 36 37 int spp_print(bdaddr_t *src, bdaddr_t *dst, uint8_t channel, int fd, int copies, const char *cups_class); 38 int hcrp_print(bdaddr_t *src, bdaddr_t *dst, unsigned short ctrl_psm, unsigned short data_psm, int fd, int copies, const char *cups_class); 39