File: socket_tcp.c

package info (click to toggle)
ucspi-tcp 0.88-10
  • links: PTS
  • area: non-free
  • in suites: etch, etch-m68k
  • size: 1,364 kB
  • ctags: 760
  • sloc: ansic: 6,759; makefile: 854; sh: 329
file content (16 lines) | stat: -rw-r--r-- 296 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <sys/types.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include "ndelay.h"
#include "socket.h"

int socket_tcp(void)
{
  int s;

  s = socket(AF_INET,SOCK_STREAM,0);
  if (s == -1) return -1;
  if (ndelay_on(s) == -1) { close(s); return -1; }
  return s;
}