Annotation of embedaddon/strongswan/src/libimcv/ita/ita_attr.h, revision 1.1.1.2

1.1       misho       1: /*
1.1.1.2 ! misho       2:  * Copyright (C) 2011-2020 Andreas Steffen
1.1       misho       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 ita_attr
                     18:  * @{ @ingroup libimcv
                     19:  */
                     20: 
                     21: #ifndef ITA_ATTR_H_
                     22: #define ITA_ATTR_H_
                     23: 
                     24: #include "pa_tnc/pa_tnc_attr.h"
                     25: 
                     26: #include <library.h>
                     27: 
                     28: typedef enum ita_attr_t ita_attr_t;
                     29: 
                     30: /**
                     31:  * IETF standard PA-TNC attribute types defined by RFC 5792
                     32:  */
                     33: enum ita_attr_t {
                     34:        ITA_ATTR_COMMAND =      1,
                     35:        ITA_ATTR_DUMMY = 2,
                     36:        ITA_ATTR_GET_SETTINGS = 3,
                     37:        ITA_ATTR_SETTINGS = 4,
                     38:        ITA_ATTR_START_ANGEL = 5,
                     39:        ITA_ATTR_STOP_ANGEL = 6,
                     40:        ITA_ATTR_ECHO = 7,
1.1.1.2 ! misho      41:        ITA_ATTR_DEVICE_ID = 8,
        !            42:        ITA_ATTR_GET_SYMLINKS = 9,
        !            43:        ITA_ATTR_SYMLINKS = 10
1.1       misho      44: };
                     45: 
                     46: /**
                     47:  * enum name for ita_attr_t.
                     48:  */
                     49: extern enum_name_t *ita_attr_names;
                     50: 
                     51: /**
                     52:  * Create a ITA PA-TNC attribute from data
                     53:  *
                     54:  * @param type                         attribute type
                     55:  * @param length                       attribute length
                     56:  * @param value                                attribute value or segment
                     57:  */
                     58: pa_tnc_attr_t* ita_attr_create_from_data(uint32_t type, size_t length,
                     59:                                                                                 chunk_t value);
                     60: 
                     61: #endif /** ITA_ATTR_H_ @}*/

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