Home
last modified time | relevance | path

Searched refs:sent (Results 51 – 75 of 482) sorted by relevance

12345678910>>...20

/freebsd/contrib/sendmail/contrib/
H A Ddomainmap.m424 In this example, mail sent to user@foo.com will be rewritten by the
30 So mail sent to jsmith@foo.com will be relayed to
31 johnsmith@mailbox.foo.com, and mail sent to jdoe@foo.com will be
36 tacking it back on to the result. Using the example above, mail sent
/freebsd/tools/test/stress2/misc/
H A Dtmpfs7.sh180 int sent = 0;
190 sent += w;
197 return sent;
H A Dsendfile6.sh180 int sent = 0;
190 sent += w;
197 return sent;
/freebsd/sys/dev/ichiic/
H A Dig4_iic.c495 int sent = 0; in ig4iic_write() local
502 while (sent < len) { in ig4iic_write()
505 target = MIN(sent + burst, (int)len); in ig4iic_write()
506 while (sent < target) { in ig4iic_write()
507 cmd = buf[sent]; in ig4iic_write()
508 if (repeated_start && sent == 0) in ig4iic_write()
510 if (stop && sent == len - 1) in ig4iic_write()
513 sent++; in ig4iic_write()
515 if (sent < len) { in ig4iic_write()
516 if (len - sent <= sc->cfg.txfifo_depth) in ig4iic_write()
[all …]
/freebsd/contrib/tcpdump/
H A DREADME.md116 were sent. 200ms later they were acked. Shortly thereafter
117 bytes 1024-1535 were sent and again acked after 200ms.
143 7 - number of times chunk was sent
151 # 134 chunks. 536 packets sent. 508 acks.
167 sequence space from 1561 to 2048. It was first sent
169 sent 15 seconds into the conversation and was sent
179 transfer and <seq. number> is the sequence number being sent
/freebsd/sys/arm/mv/
H A Da37x0_iic.c404 a37x0_iic_write(device_t dev, const char *buf, int len, int *sent, int timeout) in a37x0_iic_write() argument
419 *sent = 0; in a37x0_iic_write()
420 while (*sent < len) { in a37x0_iic_write()
424 if (*sent == len - 1) in a37x0_iic_write()
431 (*sent)++; in a37x0_iic_write()
/freebsd/crypto/openssl/util/perl/TLSProxy/
H A DRecord.pm188 sent => 0,
280 if ($self->{sent} || ($self->flight & 1) != $server) {
283 $self->{sent} = 1;
/freebsd/tests/sys/kern/
H A Dsocket_accf.c195 ssize_t sent = 0; in ATF_TC_BODY() local
206 sent += len; in ATF_TC_BODY()
207 } while (sent < ntohs(header.length)); in ATF_TC_BODY()
H A Dunix_dgram.c77 ssize_t sent; in fill() local
81 for (sent = 0; in fill()
82 sent + len + sizeof(struct sockaddr) < recvspace; in fill()
83 sent += len + sizeof(struct sockaddr)) in fill()
/freebsd/sys/contrib/openzfs/cmd/zed/zed.d/
H A Dzed.rc14 # Email will only be sent if ZED_EMAIL_ADDR is defined.
22 # Email will only be sent if ZED_EMAIL_ADDR is defined.
31 # Email will only be sent if ZED_EMAIL_ADDR is defined.
71 # If not defined, push notifications will instead be sent to all devices
87 # This defines the application from which the notification will be sent.
/freebsd/usr.sbin/cron/doc/
H A DCHANGES23 I also added a "-e" option to crontab(1). Nine people also sent me diffs
54 misc.c. Hans Trompert actually told me first, but Peter sent the patch so
67 Dennis R. Conley sent a suggestion for MMDF systems, which I've added to the
73 Irving Wolfe sent me some very cheerful changes for a NeXT system, but I
91 sent in the first and most polite request for this feature.
95 Cron V3's high score belongs to Peter Holzer, who sent in the nicest looking
110 sent me the most amazing, um, collection of patches for this problem. Thanks
117 Branko Lankester sent me a very timely and helpful fix for a looming security
H A DTHANKS15 its brothers and sisters; he also sent some diffs that lead cron toward compil-
21 Scott Narveson ported V2 to a Sequent, and sent in the most useful single batch
/freebsd/contrib/sendmail/cf/cf/
H A Dpython.cs.mc35 # accept mail sent to the domain head
39 # accept mail sent to the domain head
/freebsd/contrib/ntp/ntpsnmpd/
H A Dntpv4-mib.mib402 "The number of packets sent and received by packet mode.
411 "A statistical record of the number of packets sent and
443 "The number of NTP packets sent with this packet mode.
665 should be sent, in seconds. If set to 0 and the
667 ntpEntNotifHeartbeat is sent once.
736 "The notification to be sent when a (new) syspeer has been
744 "The notification to be sent when a new association is
752 "The notification to be sent when an association is
760 "The notification to be sent when the NTP configuration has
769 "The notification to be sent when a leap second has been
[all …]
/freebsd/sys/netgraph/
H A Dng_source.c778 int sent; in ng_source_send() local
789 for (sent = 0; error == 0 && sent < tosend; ++sent) { in ng_source_send()
820 sc->packets -= sent; in ng_source_send()
822 *sent_p = sent; in ng_source_send()
/freebsd/sys/netinet/
H A Dsctp_var.h262 stcb->asoc.fslog[stcb->asoc.fs_index].sent = tp1->sent; \
283 stcb->asoc.fslog[stcb->asoc.fs_index].sent = tp1->sent; \
/freebsd/crypto/openssl/doc/man3/
H A DSSL_CONF_CTX_set_ssl_ctx.pod20 B<cctx> is cleared. Subsequent calls to SSL_CONF_cmd() will be sent to
25 B<cctx> is cleared. Subsequent calls to SSL_CONF_cmd() will be sent to
H A DSSL_CTX_set_verify.pod71 then the extension is not sent, otherwise it is. By default the extension is not
72 sent. A certificate callback will need to be set via
76 sent by a server on the given B<ssl> connection. The SSL_VERIFY_PEER flag must
111 the verification failure. If no server certificate is sent, because an
190 SSL_VERIFY_PEER is set, a verification failure alert is sent to the peer and
209 previously set, and that a client sent the post-handshake authentication
212 sent to the client, this can be done with SSL_do_handshake() or SSL_write_ex().
216 message is sent to the client.
343 /* The client sent a certificate which verified OK */
H A DSSL_get_shared_sigalgs.pod30 they were sent by the peer.
52 These functions must be called after the peer has sent a list of supported
65 The NIDs are OpenSSL equivalents. For example if the peer sent sha256(4) and
H A DSSL_alert_type_string.pod34 a special situation, it sends an alert. The alert is sent as a special message
38 A warning alert is sent, when a non-fatal error condition occurs. The
39 "close notify" alert is sent as a warning alert. Other examples for
41 "unsupported certificate"), for which a warning alert may be sent.
46 Several alert messages must be sent as fatal alert messages as specified
H A DBIO_printf.pod21 the output is sent to the specified BIO, I<bio>, rather than standard
25 the output is sent to the specified BIO, I<bio>, rather than standard
/freebsd/crypto/heimdal/doc/
H A Dwhatis.texi17 example, data sent over the network can be eavesdropped and altered, and
96 @var{checksum}@}@var{K@sub{AB}}). This is sent together with the ticket
130 to the server side. The idea is to save the authenticators sent during
138 key. An example of this is the checksum that @var{A} sent as part of the
144 messages sent between @var{A} and @var{B} (known as @dfn{message
/freebsd/tools/regression/sockets/udp_pingpong/
H A Dudp_pingpong.c67 struct timespec sent; member
322 clock_gettime(get_clock_type(tcp), &tcp->test_pkts[pnum].tss[fdidx].sent); in send_pkt()
511 timespecsub(&tpp->tss[1].recvd, &tpp->tss[0].sent, &rttp->a2b); in calc_rtt()
512 timespecsub(&tpp->tss[0].recvd, &tpp->tss[1].sent, &rttp->b2a); in calc_rtt()
514 timespecsub(&tpp->tss[0].recvd, &tpp->tss[0].sent, &rttp->e2e); in calc_rtt()
/freebsd/tools/tools/net80211/wlaninject/
H A DREADME6 a file must be supplied if, for example, IP data needs to be sent.
26 and comparing the received frame to what was sent. This option
80 The frame is sent with sequence number 1, fragment number 1, and
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-nseq.pod.in25 can be sometimes be sent to browsers as an alternative to the standard PKCS#7
26 format when several certificates are sent to the browser, for example during

12345678910>>...20