/**
* Macro to unpack the ip addres from lwip format in 4 int
- * \param struct ip_addr ip_addr;
+ * \param addr is struct ip_addr ip_addr;
* \return for int variable separated from comma
*
- * \usage:
* \code
+ * //Upack into 4 int the lwip ip address
* LOG_INFO("dhcp ok: ip = %d.%d.%d.%d\n", IP_ADDR_TO_INT_TUPLE(netif.ip_addr.addr));
* \endcode
*/
/**
* Change the current syslog server ip address.
- * \param lwip ip_address (you could use the macro IP4_ADDR() to get it form ip address)
+ * \param addr lwip ip_address (you could use the macro IP4_ADDR() to get it form ip address)
*/
void syslog_setIp(struct ip_addr addr)
{
/**
* Init the syslog message.
*
- * \param syslog context
- * \param lwip ip_address (you could use the macro IP4_ADDR() to get it form ip address)
+ * \param syslog_ctx syslog context
+ * \param addr lwip ip_address (you could use the macro IP4_ADDR() to get it form ip address)
*/
void syslog_init(SysLog *syslog_ctx, struct ip_addr addr)
{