- fixed typo in function name IedServer_ignoreReadAccess

pull/515/head
Michael Zillgith 1 year ago
parent 8e49a72f8b
commit 1add5fd7a0

@ -815,7 +815,9 @@ LIB61850_API void
IedServer_setConnectionIndicationHandler(IedServer self, IedConnectionIndicationHandler handler, void* parameter); IedServer_setConnectionIndicationHandler(IedServer self, IedConnectionIndicationHandler handler, void* parameter);
/** /**
* \brief Ignore all requests from clients * \brief Ignore all requests from clients (for testing purposes)
*
* NOTE: This function will block all client requests on MMS layer
* *
* \param self the instance of IedServer to configure. * \param self the instance of IedServer to configure.
* \param enable when true all requests from clients will be ignored * \param enable when true all requests from clients will be ignored
@ -2017,7 +2019,7 @@ IedServer_setControlBlockAccessHandler(IedServer self, IedServer_ControlBlockAcc
* \param ignore true to ignore read requests, false to handle read requests. * \param ignore true to ignore read requests, false to handle read requests.
*/ */
LIB61850_API void LIB61850_API void
IedServer_ingoreReadAccess(IedServer self, bool ignore); IedServer_ignoreReadAccess(IedServer self, bool ignore);
/**@}*/ /**@}*/

@ -2002,7 +2002,7 @@ IedServer_setControlBlockAccessHandler(IedServer self, IedServer_ControlBlockAcc
} }
void void
IedServer_ingoreReadAccess(IedServer self, bool ignore) IedServer_ignoreReadAccess(IedServer self, bool ignore)
{ {
self->ignoreReadAccess = ignore; self->ignoreReadAccess = ignore;
} }

Loading…
Cancel
Save