File: socket_udp4.c

package info (click to toggle)
libowfat 0.28-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,552 kB
  • ctags: 1,161
  • sloc: ansic: 12,464; makefile: 42
file content (19 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <sys/types.h>
#ifndef __MINGW32__
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#endif
#include "windoze.h"

#include "socket.h"
#include "ndelay.h"

int socket_udp4(void) {
  int s;
  __winsock_init();
  s = winsock2errno(socket(PF_INET,SOCK_DGRAM,IPPROTO_UDP));
  if (s == -1) return -1;
  if (ndelay_on(s) == -1) { close(s); return -1; }
  return s;
}