Annotation of embedaddon/strongswan/src/libimcv/ietf/ietf_attr_attr_request.h, revision 1.1

1.1     ! misho       1: /*
        !             2:  * Copyright (C) 2012-2014 Andreas Steffen
        !             3:  * HSR Hochschule fuer Technik Rapperswil
        !             4:  *
        !             5:  * This program is free software; you can redistribute it and/or modify it
        !             6:  * under the terms of the GNU General Public License as published by the
        !             7:  * Free Software Foundation; either version 2 of the License, or (at your
        !             8:  * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
        !             9:  *
        !            10:  * This program is distributed in the hope that it will be useful, but
        !            11:  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
        !            12:  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
        !            13:  * for more details.
        !            14:  */
        !            15: 
        !            16: /**
        !            17:  * @defgroup ietf_attr_attr_request ietf_attr_attr_request
        !            18:  * @{ @ingroup ietf_attr
        !            19:  */
        !            20: 
        !            21: #ifndef IETF_ATTR_ATTR_REQUEST_H_
        !            22: #define IETF_ATTR_ATTR_REQUEST_H_
        !            23: 
        !            24: typedef struct ietf_attr_attr_request_t ietf_attr_attr_request_t;
        !            25: 
        !            26: #include "ietf_attr.h"
        !            27: #include "pa_tnc/pa_tnc_attr.h"
        !            28: 
        !            29: 
        !            30: /**
        !            31:  * Class implementing the IETF PA-TNC Attribute Request attribute.
        !            32:  *
        !            33:  */
        !            34: struct ietf_attr_attr_request_t {
        !            35: 
        !            36:        /**
        !            37:         * Public PA-TNC attribute interface
        !            38:         */
        !            39:        pa_tnc_attr_t pa_tnc_attribute;
        !            40: 
        !            41:        /**
        !            42:         * Adds another attribute type to the attribute request
        !            43:         *
        !            44:         * @param vendor_id             Attribute Vendor ID
        !            45:         * @param type                  Attribute Type
        !            46:         */
        !            47:        void (*add)(ietf_attr_attr_request_t *this, pen_t vendor_id, uint32_t type);
        !            48: 
        !            49:        /**
        !            50:         * Creates an enumerator over all attribute types contained
        !            51:         * in the attribute request
        !            52:         *
        !            53:         * @return                      Attribute Type enumerator returns { vendor ID, type }
        !            54:         */
        !            55:        enumerator_t* (*create_enumerator)(ietf_attr_attr_request_t *this);
        !            56: };
        !            57: 
        !            58: /**
        !            59:  * Creates an ietf_attr_attr_request_t object
        !            60:  *
        !            61:  */
        !            62: pa_tnc_attr_t* ietf_attr_attr_request_create(pen_t vendor_id, uint32_t type);
        !            63: 
        !            64: /**
        !            65:  * @param length                       Total length of attribute value
        !            66:  * @param value                                Unparsed attribute value (might be a segment)
        !            67:  */
        !            68: pa_tnc_attr_t* ietf_attr_attr_request_create_from_data(size_t length,
        !            69:                                                                                                           chunk_t value);
        !            70: 
        !            71: #endif /** IETF_ATTR_ATTR_REQUEST_H_ @}*/

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>