view lib/net.c @ 967:e922fc4e7a2e

This removes xz_mode. Mostly outdated comments and unused function parameters/struct members.
author Isaac Dunham <idunham@lavabit.com>
date Fri, 26 Jul 2013 13:27:27 -0500
parents aca8323e2690
children e11684e3bbc5
line wrap: on
line source

#include "toys.h"
#include "toynet.h"

int xsocket(int domain, int type, int protocol)
{
  int fd = socket(domain, type, protocol);

  if (fd < 0) perror_exit("socket %x %x", type, protocol);
  return fd;
}