Search results

  1. C

    sendto: No buffer space

    Add each one back in, one at a time, and see when the error comes back?
  2. C

    sendto: No buffer space

    For some reason your packets aren’t getting out fast enough. You haven’t spelled out exactly what your setup is or what you are doing when the errors occur though. That might help people come up with suggestions. You say you can ping across the LAN ok? Do you ever see the error on the LAN...
  3. C

    C ncurses blank lines (newline) not being displayed on terminal/console window

    The three newlines print for me, in so far as I can see my cursor is three lines below the text as the program runs. It seems your problem is not about what is printed but what is saved in the terminal history. I don't think there is any standard for terminal history though so it will all...
  4. C

    RPI4 wifi driver

    There is also a project sponsored by the FreeBSD foundation - not sure if its the same chip on the RPi 4.
  5. C

    Implementing 802.1x authenticator

    IIUC you can use PF_LINK or the bpf device for this (like the DHCP client does). I don't know if either method will do what you need to do but maybe something to check.
  6. C

    FreeBSD 9.1 wifi access point rc.conf problem

    IIRC if you have hostapd running it can prevent some changes taking place to the interface. You may need to kill hostapd, make your changes, then start hostapd again. Everything should happen in the right order at boot. HTH, Andrew
  7. C

    Makefile for parallel library build problem

    I don't know all the answers - being a bit rusty with make but perhaps some of this will help. The "traditional" BSD way to write the Makefile you look like you want is: LIB= test SRCS= a.c b.c .include <bsd.lib.mk> and that seems to work fine with and without -j 2 (as well as easily...
  8. C

    /etc/rc.d/jail Patch for allowing paramater specification

    You can submit patches using send-pr. I know the page talks mainly about bugs but new features can be submitted that way as well. Your report will then go in the list of PRs and hopefully come to the attention of a committer. Make sure you read the guidelines about filling out the PR form to...
Back
Top