Skip to content

Commit

Permalink
Committing dcx960-release-eos-20181009210000_rel-48
Browse files Browse the repository at this point in the history
Committing for open source release compliance

Signed-off-by: Elizabeth 'pidge' Flanagan <[email protected]>
  • Loading branch information
toganlabs committed Nov 14, 2018
1 parent ae51c3e commit 45758aa
Show file tree
Hide file tree
Showing 1,070 changed files with 208,903 additions and 0 deletions.
347 changes: 347 additions & 0 deletions acl/COPYING

Large diffs are not rendered by default.

513 changes: 513 additions & 0 deletions acl/COPYING.LGPL

Large diffs are not rendered by default.

132 changes: 132 additions & 0 deletions acl/generic_GPLv2

Large diffs are not rendered by default.

176 changes: 176 additions & 0 deletions acl/generic_LGPLv2.1

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions acl/recipeinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
LICENSE: LGPLv2.1+ & GPLv2+
PR: r0
PV: 2.2.52
504 changes: 504 additions & 0 deletions alsa-lib/COPYING

Large diffs are not rendered by default.

132 changes: 132 additions & 0 deletions alsa-lib/generic_GPLv2

Large diffs are not rendered by default.

176 changes: 176 additions & 0 deletions alsa-lib/generic_LGPLv2.1

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions alsa-lib/recipeinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
LICENSE: LGPLv2.1 & GPLv2+
PR: r0
PV: 1.1.0
109 changes: 109 additions & 0 deletions alsa-lib/socket.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
/**
* \file socket.c
* \brief Socket helper routines
* \author Abramo Bagnara <[email protected]>
* \date 2003
*/
/*
* Socket helper routines
* Copyright (c) 2003 by Abramo Bagnara <[email protected]>
*
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/

#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <unistd.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/uio.h>
#include <sys/un.h>
#include <netinet/in.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <netdb.h>
#include "local.h"

#ifndef DOC_HIDDEN
int snd_send_fd(int sock, void *data, size_t len, int fd)
{
int ret;
size_t cmsg_len = CMSG_LEN(sizeof(int));
struct cmsghdr *cmsg = alloca(cmsg_len);
int *fds = (int *) CMSG_DATA(cmsg);
struct msghdr msghdr;
struct iovec vec;

vec.iov_base = (void *)&data;
vec.iov_len = len;

cmsg->cmsg_len = cmsg_len;
cmsg->cmsg_level = SOL_SOCKET;
cmsg->cmsg_type = SCM_RIGHTS;
*fds = fd;

msghdr.msg_name = NULL;
msghdr.msg_namelen = 0;
msghdr.msg_iov = &vec;
msghdr.msg_iovlen = 1;
msghdr.msg_control = cmsg;
msghdr.msg_controllen = cmsg_len;
msghdr.msg_flags = 0;

ret = sendmsg(sock, &msghdr, 0 );
if (ret < 0) {
SYSERR("sendmsg failed");
return -errno;
}
return ret;
}

int snd_receive_fd(int sock, void *data, size_t len, int *fd)
{
int ret;
size_t cmsg_len = CMSG_LEN(sizeof(int));
struct cmsghdr *cmsg = alloca(cmsg_len);
int *fds = (int *) CMSG_DATA(cmsg);
struct msghdr msghdr;
struct iovec vec;

vec.iov_base = (void *)&data;
vec.iov_len = len;

cmsg->cmsg_len = cmsg_len;
cmsg->cmsg_level = SOL_SOCKET;
cmsg->cmsg_type = SCM_RIGHTS;
*fds = -1;

msghdr.msg_name = NULL;
msghdr.msg_namelen = 0;
msghdr.msg_iov = &vec;
msghdr.msg_iovlen = 1;
msghdr.msg_control = cmsg;
msghdr.msg_controllen = cmsg_len;
msghdr.msg_flags = 0;

ret = recvmsg(sock, &msghdr, 0);
if (ret < 0) {
SYSERR("recvmsg failed");
return -errno;
}
*fd = *fds;
return ret;
}
#endif
3 changes: 3 additions & 0 deletions arris-flash-util/recipeinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
LICENSE: CLOSED
PR: r0
PV: 1.0
4 changes: 4 additions & 0 deletions asio/COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Copyright (c) 2003-2013 Christopher M. Kohlhoff (chris at kohlhoff dot com)

Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
25 changes: 25 additions & 0 deletions asio/generic_BSL-1.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Boost Software License - Version 1.0 - August 17th, 2003

Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:

The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

3 changes: 3 additions & 0 deletions asio/recipeinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
LICENSE: BSL-1.0
PR: r0
PV: 1.10.1
Loading

0 comments on commit 45758aa

Please sign in to comment.