#ifndef __IPERF_SEVER_H__
#define __IPERF_SEVER_H__

#include "uipopt.h"
#include "psock.h"

struct iperf_server_state {
    uint8_t state;
    char    *textptr;
    int     textlen;
};

#ifndef UIP_APPCALL
#define UIP_APPCALL iperf_server_appcall
typedef struct iperf_server_state uip_tcp_appstate_t;
#endif

void iperf_server_init(void);

#endif