remove unneeded fluid_server_newclient_func_t

This commit is contained in:
derselbst 2017-10-07 15:06:06 +02:00
parent b79f2a614e
commit 86a19090eb
2 changed files with 0 additions and 8 deletions

View file

@ -105,13 +105,6 @@ FLUIDSYNTH_API void delete_fluid_shell(fluid_shell_t* shell);
/* TCP/IP server */
/**
* Callback function which is executed for new server connections.
* @param data User defined data supplied in call to new_fluid_server()
* @param addr The IP address of the client (can be NULL)
* @return Should return a new command handler for the connection (new_fluid_cmd_handler()).
*/
typedef fluid_cmd_handler_t* (*fluid_server_newclient_func_t)(void* data, char* addr, char* addr2);
FLUIDSYNTH_API
fluid_server_t* new_fluid_server(fluid_settings_t* settings,

View file

@ -2005,7 +2005,6 @@ fluid_cmd_handler_handle(fluid_cmd_handler_t* handler, int ac, char** av, fluid_
struct _fluid_server_t {
fluid_server_socket_t* socket;
fluid_settings_t* settings;
fluid_server_newclient_func_t newclient;
fluid_synth_t* synth;
fluid_midi_router_t* router;
fluid_list_t* clients;