]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cups/ipp-private.h
Import CUPS v1.7.1
[thirdparty/cups.git] / cups / ipp-private.h
index c5eeed4ca347802e29cccca5b9fb1a0c63d644e8..210c2e796662f93b7f7b3dc456820a1f430a04e7 100644 (file)
@@ -1,25 +1,16 @@
 /*
- * "$Id$"
+ * "$Id: ipp-private.h 10996 2013-05-29 11:51:34Z msweet $"
  *
- *   Private IPP definitions for the Common UNIX Printing System (CUPS).
+ *   Private IPP definitions for CUPS.
  *
+ *   Copyright 2007-2012 by Apple Inc.
  *   Copyright 1997-2006 by Easy Software Products.
  *
  *   These coded instructions, statements, and computer programs are the
- *   property of Easy Software Products and are protected by Federal
- *   copyright law.  Distribution and use rights are outlined in the file
- *   "LICENSE.txt" which should have been included with this file.  If this
- *   file is missing or damaged please contact Easy Software Products
- *   at:
- *
- *       Attn: CUPS Licensing Information
- *       Easy Software Products
- *       44141 Airport View Drive, Suite 204
- *       Hollywood, Maryland 20636 USA
- *
- *       Voice: (301) 373-9600
- *       EMail: cups-info@cups.org
- *         WWW: http://www.cups.org
+ *   property of Apple Inc. and are protected by Federal copyright
+ *   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+ *   which should have been included with this file.  If this file is
+ *   file is missing or damaged, see the license at "http://www.cups.org/".
  *
  *   This file is subject to the Apple OS-Developed Software exception.
  */
@@ -31,7 +22,7 @@
  * Include necessary headers...
  */
 
-#  include "ipp.h"
+#  include <cups/ipp.h>
 
 
 /*
@@ -44,12 +35,37 @@ extern "C" {
 
 
 /*
- * Prototypes for private functions...
+ * Constants...
  */
 
-extern ipp_attribute_t *_ippAddAttr(ipp_t *, int);
-extern void            _ippFreeAttr(ipp_attribute_t *);
+#  define IPP_BUF_SIZE (IPP_MAX_LENGTH + 2)
+                                       /* Size of buffer */
+
+
+/*
+ * Structures...
+ */
+
+typedef struct                         /**** Attribute mapping data ****/
+{
+  int          multivalue;             /* Option has multiple values? */
+  const char   *name;                  /* Option/attribute name */
+  ipp_tag_t    value_tag;              /* Value tag for this attribute */
+  ipp_tag_t    group_tag;              /* Group tag for this attribute */
+  ipp_tag_t    alt_group_tag;          /* Alternate group tag for this
+                                        * attribute */
+  const ipp_op_t *operations;          /* Allowed operations for this attr */
+} _ipp_option_t;
+
+
+/*
+ * Prototypes for private functions...
+ */
 
+#ifdef DEBUG
+extern const char      *_ippCheckOptions(void);
+#endif /* DEBUG */
+extern _ipp_option_t   *_ippFindOption(const char *name);
 
 /*
  * C++ magic...
@@ -61,5 +77,5 @@ extern void           _ippFreeAttr(ipp_attribute_t *);
 #endif /* !_CUPS_IPP_H_ */
 
 /*
- * End of "$Id$".
+ * End of "$Id: ipp-private.h 10996 2013-05-29 11:51:34Z msweet $".
  */