net-sessions

Started by newdep, April 29, 2008, 08:03:02 AM

Previous topic - Next topic

newdep

Hi Lutz,



This is the output of my tcp server (net-sessions)



I would assume these to be cleared when server closes client before client-ACK.?



Is this filling up newlisp memory? or is it just a visual thing?



(5 4)

(5 5 4)

(5 5 5 4)

(5 5 5 5 4)

(5 5 5 5 5 4)

(5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4)

(5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4)





--- code

(set 'server (net-listen 12345 "11.11.11.11"))

(while (set 'client (net-accept server))

       (net-send client (string "rn"))

       (close client)

       (println (net-sessions)))





-- remote does => telnet 11.11.11.11 12345

-- client get message

-- server drops session
-- (define? (Cornflakes))

Lutz

#1
You have to use 'net-close' not 'close'!

newdep

#2
hahahahahaaha... i did really use close..



Ow man.. thats because Im over 3 days into the same networking environment i'm building.. so I start making mistakes ;-)
-- (define? (Cornflakes))