/freebsd/contrib/blocklist/include/ |
H A D | blacklist.h | 37 struct blacklist *blacklist_open(void); 38 void blacklist_close(struct blacklist *); 39 int blacklist(int, int, const char *); 40 int blacklist_r(struct blacklist *, int, int, const char *); 42 int blacklist_sa_r(struct blacklist *, int, int,
|
H A D | Makefile | 7 INCS= blacklist.h
|
H A D | bl.h | 66 typedef struct blacklist *bl_t;
|
/freebsd/contrib/blocklist/lib/ |
H A D | blacklist.c | 51 struct blacklist *bl; in blacklist_sa() 61 blacklist_sa_r(struct blacklist *bl, int action, int rfd, in blacklist_sa_r() 88 blacklist(int action, int rfd, const char *msg) in blacklist() function 94 blacklist_r(struct blacklist *bl, int action, int rfd, const char *msg) in blacklist_r() 99 struct blacklist * 105 blacklist_close(struct blacklist *bl) in blacklist_close()
|
H A D | Makefile | 9 LIB=blacklist 10 SRCS=bl.c blacklist.c 14 MLINKS+=libblacklist.3 blacklist.3
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | blacklist.c | 29 e = wpa_s->blacklist; in wpa_blacklist_get() 77 e->next = wpa_s->blacklist; in wpa_blacklist_add() 78 wpa_s->blacklist = e; in wpa_blacklist_add() 99 e = wpa_s->blacklist; in wpa_blacklist_del() 103 wpa_s->blacklist = e->next; in wpa_blacklist_del() 128 e = wpa_s->blacklist; in wpa_blacklist_clear() 129 wpa_s->blacklist = NULL; in wpa_blacklist_clear()
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/ |
H A D | x25519_ref10.c | 20 static const unsigned char blacklist[][32] = { in has_small_order() 38 COMPILER_ASSERT(12 == sizeof blacklist / sizeof blacklist[0]); in has_small_order() 40 for (i = 0; i < sizeof blacklist / sizeof blacklist[0]; i++) { in has_small_order() 41 c[i] |= s[j] ^ blacklist[i][j]; in has_small_order() 45 for (i = 0; i < sizeof blacklist / sizeof blacklist[0]; i++) { in has_small_order()
|
/freebsd/lib/libblacklist/ |
H A D | Makefile | 6 LIB= blacklist 18 SRCS= bl.c blacklist.c 19 INCS= blacklist.h 24 libblacklist.3 blacklist.3 \
|
/freebsd/contrib/unbound/doc/ |
H A D | README.ipset.md | 37 name-v4: "blacklist" 42 iptables -A INPUT -m set --set blacklist src -j DROP 48 * Please create a set with ipset command first. eg. **ipset -N blacklist iphash** 64 name-v4: "blacklist"
|
/freebsd/stand/lua/ |
H A D | config.lua | 365 local blacklist = {} 368 return blacklist 372 blacklist[mod] = true 374 return blacklist 379 local blacklist = getBlacklist() 384 if not v.force and blacklist[module_name] ~= nil then 901 local blacklist = getBlacklist() 902 return not blacklist[modname] 908 blacklist = getBlacklist()
|
/freebsd/crypto/openssh/ |
H A D | blacklist.c | 52 static struct blacklist *blstate = NULL; 58 struct blacklist *bl_create(bool, char *, void (*)(int, const char *, va_list));
|
/freebsd/contrib/blocklist/port/ |
H A D | Makefile.am | 4 include_HEADERS = ../include/blacklist.h 13 libblacklist_la_SOURCES = bl.c blacklist.c
|
/freebsd/libexec/ftpd/ |
H A D | Makefile | 25 SRCS+= blacklist.c 26 LIBADD+= blacklist
|
/freebsd/libexec/fingerd/ |
H A D | fingerd.c | 148 blacklist(1, STDIN_FILENO, "nousername"); in main() 157 blacklist(1, STDIN_FILENO, "noforwarding"); in main() 198 blacklist(0, STDIN_FILENO, "success"); in main()
|
H A D | Makefile | 12 LIBADD+= blacklist
|
/freebsd/usr.sbin/i2c/ |
H A D | i2c.c | 159 parse_skip(const char *skip, char blacklist[128]) in parse_skip() 176 blacklist[x] = 1; in parse_skip() 201 blacklist[x] = 1; in parse_skip() 217 char blacklist[128]; in scan_bus() local 220 memset(blacklist, 0, sizeof blacklist); in scan_bus() 223 parse_skip(skip, blacklist); in scan_bus() 227 if (blacklist[u]) in scan_bus()
|
/freebsd/secure/libexec/sshd-session/ |
H A D | Makefile | 36 SRCS+= blacklist.c 37 LIBADD+= blacklist
|
/freebsd/contrib/blocklist/ |
H A D | README | 31 blacklist(action, acceptedfd, message); 34 action = 0 -> successful login clear blacklist state 40 contact the blacklist daemon, since the verification 74 blacklist filter state is persisted automatically in /var/db/blacklistd.db
|
/freebsd/contrib/blocklist/diff/ |
H A D | ftpd.diff | 5 +#include <blacklist.h> 9 +static struct blacklist *blstate;
|
H A D | proftpd.diff | 88 +#include <blacklist.h> 91 +static struct blacklist *blstate;
|
H A D | ssh.diff | 10 +#include <blacklist.h> 12 +static struct blacklist *blstate;
|
/freebsd/contrib/blocklist/etc/ |
H A D | Makefile | 5 FILESDIR= /usr/share/examples/blacklist
|
/freebsd/usr.sbin/blacklistctl/ |
H A D | Makefile | 12 LIBADD+= blacklist util
|
/freebsd/usr.sbin/blacklistd/ |
H A D | Makefile | 13 LIBADD+= blacklist util
|
/freebsd/tools/test/stress2/misc/ |
H A D | uma_zalloc_arg.sh | 181 +uma_dbg_nowait_fail_enabled_internal(const char *blacklist, 189 + fail = !str_in_list(blacklist, ',', name);
|