Hi Dag!
I'm back from my vacation now. I hope you are all right. I have noticed
that you seem to have dissapeared from linux-irda, so I suppose you
still have lots of things to do with your new job.
I have found a bug in the stack. With the attached program (killer.c) my
machines die within 5 minutes because all memory is gone. Both 2.2.16
och 2.4.0test4 do the same. I have stared at af_irda.c for quite a while
now and I can't find anything strange. Any ideas?
What will happen to the OBEX CVS-server?
See you!
/Pontus
#include <sys/socket.h>
#include "irda.h"
int main(int argc, char *argv[])
{
int sock;
while(1) {
sock = socket(AF_IRDA, SOCK_STREAM, 0);
if(sock < 0)
return -1;
close(sock);
}
return 0;
}