identation cleanups

This commit is contained in:
Martin Willi
2009-05-13 15:57:31 +02:00
parent ad65a713e4
commit d50746febe
+22 -22
View File
@@ -71,27 +71,27 @@ struct private_socket_t {
/** /**
* public functions * public functions
*/ */
socket_t public; socket_t public;
/**
* IPv4 socket (500)
*/
int ipv4;
/** /**
* IPv4 socket (500) * IPv4 socket for NATT (4500)
*/ */
int ipv4; int ipv4_natt;
/** /**
* IPv4 socket for NATT (4500) * IPv6 socket (500)
*/ */
int ipv4_natt; int ipv6;
/** /**
* IPv6 socket (500) * IPv6 socket for NATT (4500)
*/ */
int ipv6; int ipv6_natt;
/**
* IPv6 socket for NATT (4500)
*/
int ipv6_natt;
}; };
/** /**
@@ -108,7 +108,7 @@ static status_t receiver(private_socket_t *this, packet_t **packet)
fd_set rfds; fd_set rfds;
int max_fd = 0, selected = 0; int max_fd = 0, selected = 0;
u_int16_t port; u_int16_t port;
FD_ZERO(&rfds); FD_ZERO(&rfds);
if (this->ipv4) if (this->ipv4)
@@ -618,7 +618,7 @@ socket_t *socket_create()
DBG1(DBG_NET, "could not open IPv4 NAT-T socket"); DBG1(DBG_NET, "could not open IPv4 NAT-T socket");
} }
} }
this->ipv6 = open_socket(this, AF_INET6, IKEV2_UDP_PORT); this->ipv6 = open_socket(this, AF_INET6, IKEV2_UDP_PORT);
if (this->ipv6 == 0) if (this->ipv6 == 0)
{ {