summaryrefslogtreecommitdiff
path: root/src/socket_udp.c
blob: 59af4502a592ae869063b1507fa3b93bb0e0aa84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include <netinet/in.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/types.h>

#include <errno.h>

#include "close.h" /* better use unistd.h ? */
#include "error.h"
#include "ndelay.h"
#include "socket_if.h"

#ifndef EAFNOSUPPORT
  #define EAFNOSUPPORT EINVAL
#endif

/**
  @file socket_udp.c
  @author djb, fefe, feh
  @source ucspi-tcp6
  @brief setup a UDP message socket
*/

int socket_udp6(void)
{
  int s = socket(AF_INET6, SOCK_DGRAM, 0);
  if (s != -1)
    if (ndelay_on(s) == -1) {
      close(s);
      return -1;
    }

  return s;
}

int socket_udp4(void)
{
  int s = socket(AF_INET, SOCK_DGRAM, 0);
  if (s != -1)
    if (ndelay_on(s) == -1) {
      close(s);
      return -1;
    }

  return s;
}

int socket_udp(void)
{
  int s = socket(AF_INET6, SOCK_DGRAM, 0);
  if (s == -1)
    if (errno == EINVAL || errno == EAFNOSUPPORT || errno == EPROTO || errno == EPROTONOSUPPORT)
      s = socket(AF_INET, SOCK_DGRAM, 0);

  if (s != -1)
    if (ndelay_on(s) == -1) {
      close(s);
      return -1;
    }

  return s;
}