a453f5b98e8f31889cde087403395d672f9df698Michael Graff/*
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * Copyright (C) 2000, 2001, 2004, 2007, 2016 Internet Systems Consortium, Inc. ("ISC")
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence *
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * This Source Code Form is subject to the terms of the Mozilla Public
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * License, v. 2.0. If a copy of the MPL was not distributed with this
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * file, You can obtain one at http://mozilla.org/MPL/2.0/.
a453f5b98e8f31889cde087403395d672f9df698Michael Graff */
a453f5b98e8f31889cde087403395d672f9df698Michael Graff
70e5a7403f0e0a3bd292b8287c5fed5772c15270Automatic Updater/* $Id: sockaddr_multicast.c,v 1.8 2007/06/19 23:47:00 tbox Exp $ */
a453f5b98e8f31889cde087403395d672f9df698Michael Graff
ae302c18c296f31c02efb613887f206894caa749David Lawrence#include <config.h>
a453f5b98e8f31889cde087403395d672f9df698Michael Graff
a453f5b98e8f31889cde087403395d672f9df698Michael Graff#include <stdlib.h>
a453f5b98e8f31889cde087403395d672f9df698Michael Graff#include <stdio.h>
a453f5b98e8f31889cde087403395d672f9df698Michael Graff
ae302c18c296f31c02efb613887f206894caa749David Lawrence#include <isc/string.h>
ae302c18c296f31c02efb613887f206894caa749David Lawrence#include <isc/util.h>
ae302c18c296f31c02efb613887f206894caa749David Lawrence
a453f5b98e8f31889cde087403395d672f9df698Michael Graff#include "driver.h"
a453f5b98e8f31889cde087403395d672f9df698Michael Graff
a453f5b98e8f31889cde087403395d672f9df698Michael GraffTESTDECL(sockaddr_multicast);
a453f5b98e8f31889cde087403395d672f9df698Michael Graff
a453f5b98e8f31889cde087403395d672f9df698Michael Grafftest_result_t
a453f5b98e8f31889cde087403395d672f9df698Michael Graffsockaddr_multicast(void) {
a453f5b98e8f31889cde087403395d672f9df698Michael Graff
a453f5b98e8f31889cde087403395d672f9df698Michael Graff return (PASSED);
a453f5b98e8f31889cde087403395d672f9df698Michael Graff}