Annotation of embedaddon/strongswan/src/libimcv/ita/ita_attr_symlinks.h, revision 1.1.1.1

1.1       misho       1: /*
                      2:  * Copyright (C) 2020 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_sysmlinks ita_attr_sysmlinks
                     18:  * @{ @ingroup ita_attr
                     19:  */
                     20: 
                     21: #ifndef ITA_ATTR_SYMLINKS_H_
                     22: #define ITA_ATTR_SYMLINKS_H_
                     23: 
                     24: typedef struct ita_attr_symlinks_t ita_attr_symlinks_t;
                     25: 
                     26: #include "ita/ita_attr.h"
                     27: #include "pa_tnc/pa_tnc_attr.h"
                     28: #include "pts/pts_symlinks.h"
                     29: 
                     30: /**
                     31:  * Class implementing the ITA Symlinks attribute
                     32:  *
                     33:  */
                     34: struct ita_attr_symlinks_t {
                     35: 
                     36:        /**
                     37:         * Public PA-TNC attribute interface
                     38:         */
                     39:        pa_tnc_attr_t pa_tnc_attribute;
                     40: 
                     41:        /**
                     42:         * Get list of symbolic links
                     43:         *
                     44:         * @return                              List of symbolic links pointing to directories
                     45:         */
                     46:        pts_symlinks_t* (*get_symlinks)(ita_attr_symlinks_t *this);
                     47: 
                     48: };
                     49: 
                     50: /**
                     51:  * Creates an ita_attr_sysmlinks_t object
                     52:  */
                     53: pa_tnc_attr_t* ita_attr_symlinks_create(pts_symlinks_t *symlinks);
                     54: 
                     55: /**
                     56:  * Creates an ita_attr_sysmlinks_t object from received data
                     57:  *
                     58:  * @param length                       Total length of attribute value
                     59:  * @param value                                Unparsed attribute value (might be a segment)
                     60:  */
                     61: pa_tnc_attr_t* ita_attr_symlinks_create_from_data(size_t length, chunk_t value);
                     62: 
                     63: #endif /** ITA_ATTR_SYMLINKS_H_ @}*/

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