in reply to connect() & close()

This has caused me some concern I have a simple server fielding requests across a network and I have the following code.
while ($conn = $sock->accecpt()){ $conn->recv($buff, 1000); #do something with the $buff }

Should I be closeing $conn if so at which piont.