From: Arran Cudbard-Bell Date: Tue, 23 Apr 2019 20:12:19 +0000 (-0400) Subject: Missed field X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b006e7d37fcace6e5f0dc41c8a366c1807722a88;p=thirdparty%2Ffreeradius-server.git Missed field --- diff --git a/src/lib/eap/session.h b/src/lib/eap/session.h index a49cee213e5..1a0d2fd8ea5 100644 --- a/src/lib/eap/session.h +++ b/src/lib/eap/session.h @@ -54,8 +54,10 @@ struct eap_session_s { void *opaque; //!< Opaque data used by EAP methods. + rlm_rcode_t submodule_rcode; //!< Result of last submodule call. + module_method_t process; //!< Callback that should be used to process the next round. - ///< Usually set to the process functino of an EAP submodule. + ///< Usually set to the process function of an EAP submodule. int rounds; //!< How many roundtrips have occurred this session. time_t updated; //!< The last time we received a packet for this EAP session.