Home
last modified time | relevance | path

Searched refs:pfrom (Results 1 – 6 of 6) sorted by relevance

/freebsd/crypto/heimdal/appl/push/
H A DMakefile.am7 bin_SCRIPTS = pfrom script
13 pfrom: pfrom.in target
14 sed -e "s!%libexecdir%!$(libexecdir)!" $(srcdir)/pfrom.in > $@
17 man_MANS = push.8 pfrom.1
19 CLEANFILES = pfrom
21 EXTRA_DIST = NTMakefile pfrom.in $(man_MANS)
H A DChangeLog33 * pfrom.1: work around bug in grog that makes it think it needs
49 * add man-page for pfrom
110 * Makefile.am (pfrom): fix typo
128 * Makefile.am: clean pfrom
138 * Makefile.in (pfrom): use libexecdir
140 * Makefile.am: build and install pfrom
147 * Makefile.in: build and install pfrom
149 * pfrom.in: bindir -> libexecdir
H A DMakefile.in396 bin_SCRIPTS = pfrom
398 man_MANS = push.8 pfrom.1
399 CLEANFILES = pfrom
400 EXTRA_DIST = NTMakefile pfrom.in $(man_MANS)
1032 pfrom: pfrom.in
1033 sed -e "s!%libexecdir%!$(libexecdir)!" $(srcdir)/pfrom.in > $@
/freebsd/libexec/tftpd/
H A Dtftp-io.c383 struct sockaddr_storage *pfrom; in receive_packet() local
401 pfrom = (from == NULL) ? &from_local : from; in receive_packet()
402 fromlen = sizeof(*pfrom); in receive_packet()
403 n = recvfrom(peer, data, size, 0, (struct sockaddr *)pfrom, &fromlen); in receive_packet()
428 if (((struct sockaddr_in *)(pfrom))->sin_addr.s_addr != in receive_packet()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlcode.c44 int pfrom = GETARG_A(*previous); in luaK_nil() local
45 int pl = pfrom + GETARG_B(*previous); in luaK_nil()
46 if ((pfrom <= from && from <= pl + 1) || in luaK_nil()
47 (from <= pfrom && pfrom <= l + 1)) { /* can connect both? */ in luaK_nil()
48 if (pfrom < from) from = pfrom; /* from = min(from, pfrom) */ in luaK_nil()
/freebsd/contrib/lua/src/
H A Dlcode.c135 int pfrom = GETARG_A(*previous); /* get previous range */ in luaK_nil() local
136 int pl = pfrom + GETARG_B(*previous); in luaK_nil()
137 if ((pfrom <= from && from <= pl + 1) || in luaK_nil()
138 (from <= pfrom && pfrom <= l + 1)) { /* can connect both? */ in luaK_nil()
139 if (pfrom < from) from = pfrom; /* from = min(from, pfrom) */ in luaK_nil()