net-sessions

Q&A's, tips, howto's
Locked
newdep
Posts: 2038
Joined: Mon Feb 23, 2004 7:40 pm
Location: Netherlands

net-sessions

Post by 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 "\r\n"))
(close client)
(println (net-sessions)))


-- remote does => telnet 11.11.11.11 12345
-- client get message
-- server drops session
-- (define? (Cornflakes))

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Post by Lutz »

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

newdep
Posts: 2038
Joined: Mon Feb 23, 2004 7:40 pm
Location: Netherlands

Post by newdep »

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))

Locked