Cleanups:

- Changed recv/send calls into read/write calls for streams
- Made all sizeof() functions use a variable name instead of type
This commit is contained in:
Guus Sliepen 2000-04-26 17:42:55 +00:00
parent fca84d8a7d
commit 44f9449888
5 changed files with 36 additions and 35 deletions

View file

@ -126,10 +126,10 @@ cp
*/
conn_list_t *new_conn_list(void)
{
conn_list_t *p = xmalloc(sizeof(conn_list_t));
conn_list_t *p = xmalloc(sizeof(*p));
cp
/* initialise all those stupid pointers at once */
memset(p, '\0', sizeof(conn_list_t));
memset(p, '\0', sizeof(*p));
p->nexthop = p;
cp
return p;
@ -213,7 +213,7 @@ cp
return NULL;
}
ip = xmalloc(sizeof(ip_mask_t));
ip = xmalloc(sizeof(*ip));
ip->ip = ntohl(*((ip_t*)(h->h_addr_list[0])));
ip->mask = masker ? ~((1 << (32 - masker)) - 1) : 0;