Deleted Added
full compact
simple_send.c (132304) simple_send.c (156815)
1/*-
2 * Copyright (c) 2004 Robert N. M. Watson
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2004 Robert N. M. Watson
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/tools/regression/netatalk/simple_send/simple_send.c 132304 2004-07-17 17:16:16Z rwatson $
26 * $FreeBSD: head/tools/regression/netatalk/simple_send/simple_send.c 156815 2006-03-17 20:14:25Z rwatson $
27 */
28
29#include <sys/types.h>
30#include <sys/socket.h>
31
32#include <arpa/inet.h>
33
34#include <netatalk/at.h>

--- 84 unchanged lines hidden (view full) ---

119 errx(1, "%s: illegal address", addr_to);
120 sat_to.sat_addr.s_net = htons(net);
121 sat_to.sat_addr.s_node = node;
122 sat_from.sat_port = port;
123
124 printf("Address source is %u.%u:%u, address destination is %u.%u:%u\n",
125 ntohs(sat_from.sat_addr.s_net), sat_from.sat_addr.s_node,
126 sat_from.sat_port,
27 */
28
29#include <sys/types.h>
30#include <sys/socket.h>
31
32#include <arpa/inet.h>
33
34#include <netatalk/at.h>

--- 84 unchanged lines hidden (view full) ---

119 errx(1, "%s: illegal address", addr_to);
120 sat_to.sat_addr.s_net = htons(net);
121 sat_to.sat_addr.s_node = node;
122 sat_from.sat_port = port;
123
124 printf("Address source is %u.%u:%u, address destination is %u.%u:%u\n",
125 ntohs(sat_from.sat_addr.s_net), sat_from.sat_addr.s_node,
126 sat_from.sat_port,
127 ntohs(sat_to.sat_addr.s_net), sat_to.sat_addr.s_net,
127 ntohs(sat_to.sat_addr.s_net), sat_to.sat_addr.s_node,
128 sat_to.sat_port);
129
130 /*
131 * First, create a socket and use explicit sendto() to specify
132 * destination.
133 */
134 s = socket_between(NULL, NULL);
135 len = sendto(s, msg, sizeof(msg), 0, (struct sockaddr *)&sat_to,

--- 27 unchanged lines hidden ---
128 sat_to.sat_port);
129
130 /*
131 * First, create a socket and use explicit sendto() to specify
132 * destination.
133 */
134 s = socket_between(NULL, NULL);
135 len = sendto(s, msg, sizeof(msg), 0, (struct sockaddr *)&sat_to,

--- 27 unchanged lines hidden ---