21 #include "sql_class.h"
33 void my_net_local_init(
NET *net)
35 #ifndef EMBEDDED_LIBRARY
36 net->max_packet= (uint) global_system_variables.net_buffer_length;
38 my_net_set_read_timeout(net, (uint)global_system_variables.net_read_timeout);
39 my_net_set_write_timeout(net,
40 (uint)global_system_variables.net_write_timeout);
42 net->retry_count= (uint) global_system_variables.net_retry_count;
43 net->max_packet_size= max<size_t>(global_system_variables.net_buffer_length,
44 global_system_variables.max_allowed_packet);