From: Arran Cudbard-Bell Date: Thu, 2 Apr 2020 16:12:03 +0000 (-0600) Subject: test_point: Add missing field X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0a87ca0f87fc613df6d4e9f238708522622d4e7;p=thirdparty%2Ffreeradius-server.git test_point: Add missing field --- diff --git a/src/lib/io/test_point.h b/src/lib/io/test_point.h index 7abf81b80ff..0ba11688e32 100644 --- a/src/lib/io/test_point.h +++ b/src/lib/io/test_point.h @@ -14,6 +14,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ +#include #include "proto.h" #include "pair.h" @@ -87,4 +88,6 @@ typedef struct { typedef struct { fr_test_point_ctx_alloc_t test_ctx; //!< Allocate a test ctx for the encoder. fr_pair_encode_t func; //!< Encoder for pairs. + fr_cursor_iter_t next_encodable; //!< Iterator to use to select attributes + ///< to encode. } fr_test_point_pair_encode_t;