FreeRTOS+TCP with STM32H7 - where should I define ETH_RX_BUF_SIZE and TX

I’m porting the AFR 202011 to my H743 based board and I encounter a build issue with NetworkInterface.c under freertos_plus_tcp
The ETH_RX_BUF_SIZE and ETH_TX_BUF_SIZE are not defined and I can see that in the F4 implementation those defines are located in the stm32f4xx_hal_conf.h but this is not the case for the H7.
Can someone please advise on that?
Thanks

Just from the name, stm32f4xx_hal_conf.h looks like it is a configuration file - so can you just add them to that?

Thank you for getting back to me on that.
First, I indeed added it to this file and so far (I’m still trying to get the project compiled) it is passed the compile stage.
The reason I raised this question is because the readme.txt in the STM32Fxx directory of the NetworkInterface refer specifically to those defines and to where they should be located while the readme.md in the STM32Hxx does not mention them at all and this confused me.
Thanks!