Deleted Added
full compact
simple_send.c (132302) simple_send.c (132304)
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 132302 2004-07-17 17:12:15Z rwatson $
26 * $FreeBSD: head/tools/regression/netatalk/simple_send/simple_send.c 132304 2004-07-17 17:16:16Z 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>

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

63 * desired. If a source is specified, bind it. If a destination is
64 * specified, connect it.
65 */
66static int
67socket_between(struct sockaddr_at *from, struct sockaddr_at *to)
68{
69 int s;
70
27 */
28
29#include <sys/types.h>
30#include <sys/socket.h>
31
32#include <arpa/inet.h>
33
34#include <netatalk/at.h>

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

63 * desired. If a source is specified, bind it. If a destination is
64 * specified, connect it.
65 */
66static int
67socket_between(struct sockaddr_at *from, struct sockaddr_at *to)
68{
69 int s;
70
71 s = socket(PF_APPLETALK, SOCK_DGRAM, 0);
71 s = socket(PF_APPLETALK, SOCK_DGRAM, ATPROTO_DDP);
72 if (s == -1)
73 errx(1, "socket: %s\n", strerror(errno));
74
75 if (from != NULL) {
76 if (bind(s, (struct sockaddr *)from, sizeof(*from)) != 0)
77 errx(1, "bind: %u.%u returned %s\n",
78 ntohs(from->sat_addr.s_net), from->sat_addr.s_node,
79 strerror(errno));

--- 83 unchanged lines hidden ---
72 if (s == -1)
73 errx(1, "socket: %s\n", strerror(errno));
74
75 if (from != NULL) {
76 if (bind(s, (struct sockaddr *)from, sizeof(*from)) != 0)
77 errx(1, "bind: %u.%u returned %s\n",
78 ntohs(from->sat_addr.s_net), from->sat_addr.s_node,
79 strerror(errno));

--- 83 unchanged lines hidden ---