| 582 | /* The following will only be used for short strings < 65K */ |
| 583 | |
| 584 | uchar *net_store_data(uchar *to, const uchar *from, size_t length) |
| 585 | { |
| 586 | to=net_store_length_fast(to,length); |
| 587 | memcpy(to,from,length); |
| 588 | return to+length; |
| 589 | } |
| 590 | |
| 591 | uchar *net_store_data(uchar *to,int32 from) |
| 592 | { |
no test coverage detected