| /src/external/ibm-public/postfix/dist/src/oqmgr/ |
| qmgr_error.c | 21 /* qmgr_error_transport() looks up the error transport for the 22 /* specified service. The result is null if the transport is 65 /* qmgr_error_transport - look up error transport for specified service */ 69 QMGR_TRANSPORT *transport; local 72 * Find or create retry transport. 74 if ((transport = qmgr_transport_find(service)) == 0) 75 transport = qmgr_transport_create(service); 76 if (QMGR_TRANSPORT_THROTTLED(transport)) 82 return (transport); 89 QMGR_TRANSPORT *transport; local [all...] |
| qmgr_entry.c | 193 if (QMGR_TRANSPORT_THROTTLED(dst->transport)) 194 msg_panic("%s: destination transport %s is throttled", 195 myname, dst->transport->name); 219 QMGR_TRANSPORT *transport = queue->transport; local 254 if (which == QMGR_QUEUE_BUSY && transport->rate_delay > 0) { 257 myname, transport->name, queue->name, queue->window); 261 qmgr_queue_suspend(queue, transport->rate_delay); 352 QMGR_TRANSPORT *transport; local 362 transport = queue->transport [all...] |
| qmgr_queue.c | 13 /* QMGR_QUEUE *qmgr_queue_create(transport, name, nexthop) 14 /* QMGR_TRANSPORT *transport; 21 /* QMGR_QUEUE *qmgr_queue_find(transport, name) 22 /* QMGR_TRANSPORT *transport; 25 /* QMGR_QUEUE *qmgr_queue_select(transport) 26 /* QMGR_TRANSPORT *transport; 40 /* Each queue corresponds to a specific transport and destination. 48 /* transport and destination. The queue is given an initial 51 /* provided that it does not exceed the transport-specific 59 /* transport. A null result means that the queue was not found 203 QMGR_TRANSPORT *transport = queue->transport; local 283 QMGR_TRANSPORT *transport = queue->transport; local 379 QMGR_TRANSPORT *transport = queue->transport; local [all...] |
| qmgr_active.c | 601 QMGR_TRANSPORT *transport; local 604 * Allocate one delivery process for every transport with pending mail. 607 while ((transport = qmgr_transport_select()) != 0) { 609 msg_info("qmgr_active_drain: allocate %s", transport->name); 610 qmgr_transport_alloc(transport, qmgr_deliver);
|
| qmgr_deliver.c | 13 /* int qmgr_deliver(transport, fp) 14 /* QMGR_TRANSPORT *transport; 29 /* availability for the named transport. It arranges for delivery 32 /* pointer if the transport accepts no connection. Upon completion 222 msg_warn("write to process (%s): %m", entry->queue->transport->name); 231 /* qmgr_deliver_abort - transport response watchdog */ 237 QMGR_TRANSPORT *transport = queue->transport; local 240 msg_fatal("%s: timeout receiving delivery status from transport: %s", 241 message->queue_id, transport->name) 250 QMGR_TRANSPORT *transport = queue->transport; local [all...] |
| qmgr_transport.c | 7 /* per-transport data structures 19 /* void qmgr_transport_alloc(transport, notify) 20 /* QMGR_TRANSPORT *transport; 21 /* void (*notify)(QMGR_TRANSPORT *transport, VSTREAM *fp); 23 /* void qmgr_transport_throttle(transport, dsn) 24 /* QMGR_TRANSPORT *transport; 27 /* void qmgr_transport_unthrottle(transport) 28 /* QMGR_TRANSPORT *transport; 30 /* This module organizes the world by message transport type. 31 /* Each transport can have zero or more destination queue 118 QMGR_TRANSPORT *transport; \/* transport context *\/ member in struct:QMGR_TRANSPORT_ALLOC 414 QMGR_TRANSPORT *transport; local [all...] |
| /src/external/ibm-public/postfix/dist/src/qmgr/ |
| qmgr_error.c | 21 /* qmgr_error_transport() looks up the error transport for the 22 /* specified service. The result is null if the transport is 65 /* qmgr_error_transport - look up error transport for specified service */ 69 QMGR_TRANSPORT *transport; local 72 * Find or create retry transport. 74 if ((transport = qmgr_transport_find(service)) == 0) 75 transport = qmgr_transport_create(service); 76 if (QMGR_TRANSPORT_THROTTLED(transport)) 82 return (transport); 89 QMGR_TRANSPORT *transport; local [all...] |
| qmgr_queue.c | 13 /* QMGR_QUEUE *qmgr_queue_create(transport, name, nexthop) 14 /* QMGR_TRANSPORT *transport; 21 /* QMGR_QUEUE *qmgr_queue_find(transport, name) 22 /* QMGR_TRANSPORT *transport; 37 /* Each queue corresponds to a specific transport and destination. 45 /* transport and destination. The queue is given an initial 48 /* provided that it does not exceed the transport-specific 56 /* transport. A null result means that the queue was not found. 67 /* limit specified for the transport. This routine implements 123 (strcmp(queue->transport->name, MAIL_SERVICE_RETRY) == 0 220 QMGR_TRANSPORT *transport = queue->transport; local 300 QMGR_TRANSPORT *transport = queue->transport; local 375 QMGR_TRANSPORT *transport = queue->transport; local [all...] |
| qmgr_active.c | 601 QMGR_TRANSPORT *transport; local 604 * Allocate one delivery process for every transport with pending mail. 607 while ((transport = qmgr_transport_select()) != 0) { 609 msg_info("qmgr_active_drain: allocate %s", transport->name); 610 qmgr_transport_alloc(transport, qmgr_deliver);
|
| qmgr_deliver.c | 13 /* int qmgr_deliver(transport, fp) 14 /* QMGR_TRANSPORT *transport; 29 /* availability for the named transport. It arranges for delivery 32 /* pointer if the transport accepts no connection. Upon completion 227 msg_warn("write to process (%s): %m", entry->queue->transport->name); 236 /* qmgr_deliver_abort - transport response watchdog */ 242 QMGR_TRANSPORT *transport = queue->transport; local 245 msg_fatal("%s: timeout receiving delivery status from transport: %s", 246 message->queue_id, transport->name) 255 QMGR_TRANSPORT *transport = queue->transport; local [all...] |
| qmgr_entry.c | 208 QMGR_TRANSPORT *dst_transport = dst_queue->transport; 221 msg_panic("%s: destination transport %s is throttled", 258 QMGR_TRANSPORT *transport = job->transport; local 288 * Make sure that the transport of any retired or finishing job that 311 if (which == QMGR_QUEUE_BUSY && transport->rate_delay > 0) { 314 myname, transport->name, queue->name, queue->window); 318 qmgr_queue_suspend(queue, transport->rate_delay); 321 && queue->blocker_tag == transport->blocker_tag) 413 QMGR_TRANSPORT *transport; local [all...] |
| qmgr_transport.c | 7 /* per-transport data structures 19 /* void qmgr_transport_alloc(transport, notify) 20 /* QMGR_TRANSPORT *transport; 21 /* void (*notify)(QMGR_TRANSPORT *transport, VSTREAM *fp); 23 /* void qmgr_transport_throttle(transport, dsn) 24 /* QMGR_TRANSPORT *transport; 27 /* void qmgr_transport_unthrottle(transport) 28 /* QMGR_TRANSPORT *transport; 30 /* This module organizes the world by message transport type. 31 /* Each transport can have zero or more destination queue 123 QMGR_TRANSPORT *transport; \/* transport context *\/ member in struct:QMGR_TRANSPORT_ALLOC 419 QMGR_TRANSPORT *transport; local [all...] |
| /src/external/ibm-public/postfix/dist/src/util/ |
| stream_recv_fd.c | 85 char *transport; local 94 || (endpoint = split_at(transport = argv[1], ':')) == 0 95 || *endpoint == 0 || *transport == 0) 96 msg_fatal("usage: %s transport:endpoint", argv[0]); 98 if (strcmp(transport, "stream") == 0) { 101 msg_fatal("invalid transport name: %s", transport); 104 msg_fatal("listen %s:%s: %m", transport, endpoint);
|
| stream_send_fd.c | 85 char *transport; local 92 || (endpoint = split_at(transport = argv[1], ':')) == 0 93 || *endpoint == 0 || *transport == 0) 94 msg_fatal("usage: %s transport:endpoint file...", argv[0]); 96 if (strcmp(transport, "stream") == 0) { 99 msg_fatal("invalid transport name: %s", transport); 102 msg_fatal("connect %s:%s: %m", transport, endpoint);
|
| unix_recv_fd.c | 142 char *transport; local 151 || (endpoint = split_at(transport = argv[1], ':')) == 0 152 || *endpoint == 0 || *transport == 0) 153 msg_fatal("usage: %s transport:endpoint [workaround]", argv[0]); 155 if (strcmp(transport, "unix") == 0) { 158 msg_fatal("invalid transport name: %s", transport); 161 msg_fatal("listen %s:%s: %m", transport, endpoint);
|
| unix_send_fd.c | 167 char *transport; local 176 || (endpoint = split_at(transport = argv[1], ':')) == 0 177 || *endpoint == 0 || *transport == 0) 178 msg_fatal("usage: %s transport:endpoint file...", argv[0]); 180 if (strcmp(transport, "unix") == 0) { 183 msg_fatal("invalid transport name: %s", transport); 186 msg_fatal("connect %s:%s: %m", transport, endpoint);
|
| auto_clnt.c | 69 /* The service argument specifies "transport:servername" where 70 /* transport is currently limited to one of the following: 307 char *transport = mystrdup(service); local 314 if ((endpoint = split_at(transport, ':')) == 0 315 || *endpoint == 0 || *transport == 0) 316 msg_fatal("need service transport:endpoint instead of \"%s\"", service); 318 msg_info("%s: transport=%s endpoint=%s", myname, transport, endpoint); 326 if (strcmp(transport, "inet") == 0) { 328 } else if (strcmp(transport, "local") == 0) [all...] |
| /src/external/apache2/mDNSResponder/dist/ServiceRegistration/ |
| dso-utils.c | 73 dso_simple_response((comm_t *)dso->transport, NULL, header, rcode); 80 comm_t *transport = dso->transport; local 82 dso_simple_response(transport, NULL, header, dns_rcode_formerr);
|
| /src/external/ibm-public/postfix/dist/src/global/ |
| deliver_pass.c | 34 /* String of the form \fItransport\fR:\fInexthop\fR. Either transport 35 /* or nexthop are optional. For details see the transport map manual page. 178 char *transport; local 182 * Parse service into transport:nexthop form, and allow for omission of 185 transport = saved_service = mystrdup(service); 188 if (*transport == 0) 189 msg_fatal("missing transport name in \"%s\"", service); 194 msg_info("%s: passing <%s> to transport=%s", 196 transport); 197 stream = mail_connect_wait(class, transport); [all...] |
| resolve_clnt.h | 46 VSTRING *transport; member in struct:RESOLVE_REPLY 63 #define RESOLVE_CLNT_ASSIGN(reply, transport, nexthop, recipient) { \ 64 (reply).transport = (transport); \
|
| /src/external/mpl/bind/dist/bin/named/ |
| transportconf.c | 25 #include <dns/transport.h> 42 #define parse_transport_option(map, transport, name, setter) \ 47 setter(transport, cfg_obj_asstring(obj)); \ 51 #define parse_transport_tls_versions(map, transport, name, setter) \ 78 setter(transport, tls_protos); \ 84 #define parse_transport_bool_option(map, transport, name, setter) \ 89 setter(transport, cfg_obj_asboolean(obj)); \ 103 dns_transport_t *transport; local 110 transport = dns_transport_new(&dohname, DNS_TRANSPORT_HTTP, 113 dns_transport_set_tlsname(transport, dohid) 152 dns_transport_t *transport; local 221 dns_transport_t *transport; local [all...] |
| /src/external/mpl/bind/dist/lib/ns/ |
| listenlist.c | 47 const isc_tlsctx_cache_transport_t transport = local 55 transport, family, &sslctx, 180 transport, family, sslctx, store,
|
| /src/usr.sbin/rpc.pcnfsd/ |
| pcnfsd_test.c | 29 char *transport = "udp"; local 32 fprintf(stderr, "usage: %s server host printer user password [transport]\n", 43 transport = argv[6]; 45 cl = clnt_create(server, PCNFSDPROG, PCNFSDVERS, transport); 50 cl2 = clnt_create(server, PCNFSDPROG, PCNFSDV2, transport);
|
| /src/external/mpl/bind/dist/lib/dns/include/dns/ |
| dnstap.h | 44 #include <dns/transport.h> 101 dns_transport_type_t transport; member in struct:dns_dtdata 268 isc_sockaddr_t *dstaddr, dns_transport_type_t transport,
|
| /src/crypto/external/cpl/trousers/dist/src/tspi/ |
| tspi_aik.c | 40 UINT32 transport; local 214 &transport))) 217 if (transport) {
|