void
print_headers()
{
    xil_printf("\r\n");
    xil_printf("%20s %6s %s\r\n", "Server", "Port", "Connect With..");
    xil_printf("%20s %6s %s\r\n", "--------------------", "------", "--------------------");

    if (INCLUDE_ECHO_SERVER)
        print_echo_app_header();

    if (INCLUDE_RXPERF_SERVER)
        print_rxperf_app_header();

    if (INCLUDE_TXPERF_CLIENT)
        print_txperf_app_header();

    if (INCLUDE_TFTP_SERVER)
        print_tftp_app_header();

    if (INCLUDE_WEB_SERVER)
        print_web_app_header();

    if (INCLUDE_UTXPERF_CLIENT)
    	print_utxperf_app_header();

    if (INCLUDE_URXPERF_SERVER)
    	print_urxperf_app_header();

    xil_printf("\r\n");
}
Beispiel #2
0
void 
print_headers()
{
    xil_printf("\n\r");
    xil_printf("%20s %6s %s\n\r", "Server", "Port", "Connect With..");
    xil_printf("%20s %6s %s\n\r", "--------------------", "------", "--------------------");

    if (INCLUDE_WEB_SERVER)
        print_web_app_header();

    xil_printf("\n\r");
}