Socket shall use Buffer Management
To ease the integration of TCP sockets shall use buffer management.
TCP requires to temporarily store frames, if a frame was lost or received corrupted. Therefore the socket shall reserve memory using buffer management.
Currently, the frame is copied multiple three times during reception, this can be reduced to only two times if the network stack uses its own global memory pool.