strongswan/src/libcharon/encoding/payloads/delete_payload.h

97 lines
2.4 KiB
C
Raw Normal View History

2005-12-05 13:43:43 +00:00
/*
* Copyright (C) 2015 Tobias Brunner
2006-07-07 08:49:06 +00:00
* Copyright (C) 2005-2006 Martin Willi
* Copyright (C) 2005 Jan Hutter
2005-12-05 13:43:43 +00:00
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
/**
* @defgroup delete_payload delete_payload
* @{ @ingroup payloads
2005-12-05 13:43:43 +00:00
*/
#ifndef DELETE_PAYLOAD_H_
#define DELETE_PAYLOAD_H_
2005-12-05 13:43:43 +00:00
typedef struct delete_payload_t delete_payload_t;
#include <library.h>
2005-12-05 13:43:43 +00:00
#include <encoding/payloads/payload.h>
#include <encoding/payloads/proposal_substructure.h>
/**
2011-11-17 17:14:51 +00:00
* Class representing an IKEv1 or a IKEv2 DELETE payload.
2005-12-05 13:43:43 +00:00
*/
struct delete_payload_t {
2005-12-05 13:43:43 +00:00
/**
* The payload_t interface.
*/
payload_t payload_interface;
2005-12-05 13:43:43 +00:00
/**
* Get the protocol ID.
2005-12-05 13:43:43 +00:00
*
* @return protocol ID
*/
protocol_id_t (*get_protocol_id) (delete_payload_t *this);
2005-12-05 13:43:43 +00:00
/**
* Add an SPI to the list of deleted SAs.
*
* @param spi spi to add
*/
2016-03-22 12:22:01 +00:00
void (*add_spi) (delete_payload_t *this, uint32_t spi);
/**
* Set the IKE SPIs for an IKEv1 delete.
*
* @param spi_i initiator SPI
* @param spi_r responder SPI
*/
2016-03-22 12:22:01 +00:00
void (*set_ike_spi)(delete_payload_t *this, uint64_t spi_i, uint64_t spi_r);
/**
* Get the IKE SPIs from an IKEv1 delete.
*
* @param spi_i initiator SPI
* @param spi_r responder SPI
* @return TRUE if SPIs extracted successfully
*/
2016-03-22 12:22:01 +00:00
bool (*get_ike_spi)(delete_payload_t *this, uint64_t *spi_i, uint64_t *spi_r);
/**
* Get an enumerator over the SPIs in network order.
2005-12-05 13:43:43 +00:00
*
2016-03-22 12:22:01 +00:00
* @return enumerator over SPIs, uint32_t
2005-12-05 13:43:43 +00:00
*/
enumerator_t *(*create_spi_enumerator) (delete_payload_t *this);
2005-12-05 13:43:43 +00:00
/**
* Destroys an delete_payload_t object.
2005-12-05 13:43:43 +00:00
*/
void (*destroy) (delete_payload_t *this);
};
/**
* Creates an empty delete_payload_t object.
*
* @param type PLV2_DELETE or PLV1_DELETE
* @param protocol_id protocol, such as AH|ESP
* @return delete_payload_t object
2005-12-05 13:43:43 +00:00
*/
2011-11-17 17:14:51 +00:00
delete_payload_t *delete_payload_create(payload_type_t type,
protocol_id_t protocol_id);
2005-12-05 13:43:43 +00:00
#endif /** DELETE_PAYLOAD_H_ @}*/