Igor Olemskoi wrote:
> Can anybody advise me how to drop PPPoE or PPTP client from radius.c 
> (mpd4-beta5).

Actually u can't. Radius doesn't do anything to kick the client. Try 
thinking about specifiying session timeout or using third party solutions.

I have radius compiled with postgresql for accounting purposes. I use 
this simple postgresql pl-python [trigger] function:

[code]
import socket

s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.connect(('localhost',5005))
s.send("bundle %s\nclose iface\nexit"%(args[0][8:]))
s.close()
return True
[/code]

-- 
Sphinx of black quartz judge my vow!

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Mpd-users mailing list
Mpd-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mpd-users

Reply via email to