Annotation of embedaddon/strongswan/src/libimcv/ita/ita_attr_dummy.h, revision 1.1.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 ita_attr_dummy ita_attr_dummy
                     18:  * @{ @ingroup ita_attr
                     19:  */
                     20: 
                     21: #ifndef ITA_ATTR_DUMMY_H_
                     22: #define ITA_ATTR_DUMMY_H_
                     23: 
                     24: typedef struct ita_attr_dummy_t ita_attr_dummy_t;
                     25: 
                     26: #include "pa_tnc/pa_tnc_attr.h"
                     27: 
                     28: /**
                     29:  * Class implementing the ITA Dummy PA-TNC attribute.
                     30:  *
                     31:  */
                     32: struct ita_attr_dummy_t {
                     33: 
                     34:        /**
                     35:         * Public PA-TNC attribute interface
                     36:         */
                     37:        pa_tnc_attr_t pa_tnc_attribute;
                     38: 
                     39:        /**
                     40:         * Get the size the ITA Dummy attribute value
                     41:         *
                     42:         * @return                              size of dummy attribute value
                     43:         */
                     44:        int (*get_size)(ita_attr_dummy_t *this);
                     45: };
                     46: 
                     47: /**
                     48:  * Creates an ita_attr_dummy_t object with a given size
                     49:  *
                     50:  * @param size                         size of dummy attribute value
                     51:  */
                     52: pa_tnc_attr_t* ita_attr_dummy_create(size_t size);
                     53: 
                     54: /**
                     55:  * Creates an ita_attr_dummy_t object from received data
                     56:  *
                     57:  * @param length                       Total length of attribute value
                     58:  * @param value                                Unparsed attribute value (might be a segment)
                     59:  */
                     60: pa_tnc_attr_t* ita_attr_dummy_create_from_data(size_t length, chunk_t value);
                     61: 
                     62: #endif /** ITA_ATTR_DUMMY_H_ @}*/

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