Searched defs:data (Results 1 - 6 of 6) sorted by relevance
/sendmail/libmilter/ |
H A D | comm.c | 22 ** SMFI_SETMAXDATASIZE -- set limit for milter data read/write. 73 char data[MILTER_LEN_BYTES + 1]; local 97 len = MI_SOCK_READ(sd, data + i, sizeof data - i); 111 if (len >= (ssize_t) sizeof data - i) 129 *cmd = data[MILTER_LEN_BYTES]; 130 data[MILTER_LEN_BYTES] = '\0'; 131 (void) memcpy((void *) &expl, (void *) &(data[0]), MILTER_LEN_BYTES); 226 ** until all the data is written out or an error occurs. 312 ** buf -- buffer with further data 332 char data[MILTER_LEN_BYTES + 1]; local [all...] |
/sendmail/include/libsmdb/ |
H A D | smdb.h | 63 ** DB_DEL_FUNC -- removes a key and data pair from the database 94 ** DB_GET_FUNC -- Gets the data associated with a key. 99 ** data -- A place to store the returned data. 110 SMDB_DBENT *data, unsigned int flags)); 113 ** DB_PUT_FUNC -- Sets some data according to the key. 118 ** data -- The data to store. 131 SMDB_DBENT *data, unsigned int flags)); 240 SMDB_DBENT *data, 303 void *data; member in struct:entry_struct [all...] |
/sendmail/vacation/ |
H A D | vacation.c | 828 SMDB_DBENT key, data; local 835 memset(&data, '\0', sizeof data); 838 key.data = VIT; 841 st = Db->smdb_get(Db, &key, &data, 0); 845 memmove(&next, data.data, sizeof(next)); 847 memset(&data, '\0', sizeof data); 850 key.data 891 SMDB_DBENT key, data; local 923 SMDB_DBENT key, data; local [all...] |
/sendmail/sendmail/ |
H A D | tls.c | 83 ** randfile -- name of file with random data 1134 ** can't load CA data; do we care? 1135 ** the data is necessary to authenticate the client, 1730 char *file, *data; local 1735 while ((l = ERR_get_error_line_data(CP &file, &line, CP &data, &flags)) 1742 bitset(ERR_TXT_STRING, flags) ? data : "");
|
H A D | milter.c | 242 "Milter (%s): timeout %s data %s, where=%s", \ 327 sm_dprintf("milter_sys_read (%s): timeout %s data read in %s", 333 "Milter (%s): timeout %s data read in %s", 402 char data[MILTER_LEN_BYTES + 1]; local 425 if (milter_sysread(m, data, sizeof(data), to, e, where) == NULL) 443 sm_dprintf("milter_read(%s): timeout before data read, where=%s\n", 447 "Milter read(%s): timeout before data read, where=%s", 455 *cmd = data[MILTER_LEN_BYTES]; 456 data[MILTER_LEN_BYTE 526 char data[MILTER_LEN_BYTES + 1]; local 2379 char data[MILTER_OPTLEN]; local [all...] |
H A D | map.c | 312 ** Pointer to rewritten result. This is static data that 1770 datum data; local 1790 data.dsize = strlen(rhs); 1791 data.dptr = rhs; 1796 data.dsize++; 1799 status = dbm_store((DBM *) map->map_db1, key, data, DBM_INSERT); 1816 if (data.dsize + old.dsize + 2 > bufsiz) 1820 bufsiz = data.dsize + old.dsize + 2; 1824 data.dptr, ",", old.dptr); 1825 data 2466 DBT data; local [all...] |
Completed in 77 milliseconds