ppp showing radius message

2001-04-25 Thread Victor Ivanov
Hi, I made a simple (and ugly) patch to ppp to show the radius message when a radius reject is received. It also saves it in struct authinfo so the auth failure routine can pass it to the peer. The patch modifies pap.c to do this, but I don't know how to modify the other auth types (I'm

Re: making release without full CVS tree?

2001-03-26 Thread Victor Ivanov
On Mon, Mar 26, 2001 at 11:51:22AM +0400, Alexey V. Neyman wrote: > Hello there! > > I just read FAQ on making release and have one question. FAQ says I must > be having full CVS source tree (or be able to access it via CVSROOT), but > I'm behind modem connection. So I'm curious why it is not eno

isa/pnp modem not in sio.c

2001-02-19 Thread Victor Ivanov
Hello, A friend of mine has internal modem which is not detected autmagically by sio.c. It is V.34 ISA modem which behaves like a serial port. It is a 4.x system. Pnpinfo returns: Vendor ID GVC1601 (0x0116c31e), Serial Number 0x0001 Device Description: Rockwell V.34 Plug & Play Modem I fou

Re: Kernel editing tools.

2001-02-08 Thread Victor Ivanov
On Wed, Feb 07, 2001 at 07:25:42PM -0500, Kevin Brunelle wrote: > Hey everyone, > > Sorry if you have heard this before, or if it is annoying. I just can't > seem to find any information on this. > > I have been poking around my kernel for quite some time now, and I have > been doing it with var

That's why [Re: Why not gzip iso images?]

2000-03-15 Thread Victor Ivanov
> * Paul Robinson <[EMAIL PROTECTED]> [000315 06:14] wrote: [snip snip] > ~ % ftp ftp://ftp.freebsd.org/pub/FreeBSD/release/i386/ISO-IMAGES/ > Connected to wizard.freesoftware.com. > ... > ftp> get 3.4-install.iso > local: 3.4-install.iso remote: 3.4-install.iso > 227 Entering Passive Mode (209,1

Re: Why not gzip iso images?

2000-03-15 Thread Victor Ivanov
> > > On Wed, 15 Mar 2000 14:43:27 GMT, Paul Robinson wrote: > > > If you save 20Mb, over a reliable 56Kb modem, you've saved them somewhere > > in the region of one and a half hours... I think you guys are too used to > > your broadband... :) > > And you're forgetting that, as I said in my o

Re: Midnight Commander and FreeBDS

2000-03-11 Thread Victor Ivanov
FreeBDS? Is that some Bulgarian Standart or what ;^) I think your question is not for this list.. But I want to say something for the keyboard which involves midc. I posted before a message with the same content.. but no response.. It is about two keyboard patches (kernel). The first set

KDGKBSTATE and alt=meta

2000-02-27 Thread Victor Ivanov
hi.. there is no shift-keys retrieval ioctl implemented in FreeBSD... why? the KDGKBSTATE ioctl returns just the lock-keys state. actualy it takes the flags int and masks it with the lock-keys bitmask. some applications need the shift-keys state (such as mcedit and the tvision library) and

Re: modem program... Help

2000-02-25 Thread Victor Ivanov
The modem's escape sequense is three escape symbols (usually '+') which maybe disabled if the escape symbol is >127 (stored in register 2): ATS2=x where x>127 disables it, so xxxATH0 won't work. It is good to disable it (otherwise you get dropped with a simple ping...). The default value is 43

Re: yamaha japan relationships anyone?

2000-02-25 Thread Victor Ivanov
> Witness depositions, records, this sort of stuff. > > Don't try to dismiss laws as being senseless. They are still laws, and > they will still be enforced against you if you step on the wrong toes, > and whether you think they are senseless or not will not mean *a damn > thing* to the people w

Re: yamaha japan relationships anyone?

2000-02-23 Thread Victor Ivanov
> Marco van de Voort wrote: > > [cut] > > The case centered on the fact that _copies_ of the disassembled object > code had been made, to enable the reverse engineering. If I have the drivers and disassemble them "real-time" directly from the files (dlls, etc) and view the 'source' on the scree

Re: Bug in ioctl() [Was: Help needed with ioctl() calls]

2000-02-19 Thread Victor Ivanov
mixer uses 100 levels for each "device" (master volume, pcm, synth, etc), but your hardware maybe uses 64 (or 128). mixer needs to be universal.. so does the ioctl() and the interface to the hardware mixer. Look at the sources in the kernel :)... maybe you'll find something like this (which loos

Re: Loadable Code Modules?

2000-02-14 Thread Victor Ivanov
dlopen(3): #include void *dlopen(const char *path, int mode); void *dlsym(void *handle, const char *symbol); ... void *dll_handle; char (*my_func)(char *); // me too :) dll_handle = dlopen("/my/tests/something.so", RTLD_NOW); my_func = dlsym(dll_handle, "my_func"); ... so

bad floppies lock ttys

2000-02-12 Thread Victor Ivanov
I don't think this is the very right place to put this message, but I don't really want to subscribe to high-traffic mailing lists and maybe this is a device problem... The device is /dev/fd0 (standart 1,44 IDE floppy, controller fdc). When accessing bad floppy disks the kernel complains for a

Re: Search a symbol in the source tree

1999-10-12 Thread Victor Ivanov
> >Can anyone suggest me a way of searching symbols in the entire /usr/src >tree? I normally use grep */*. But grep does not work recursively, right? >Something like a small shell script may do this. Thanks a lot. > >-Zhihui > find . -name '*' | xargs grep expression ...or something :) rega