From owner-soc-status@FreeBSD.ORG Mon Jul 28 10:57:54 2014 Return-Path: Delivered-To: soc-status@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E55FE83 for ; Mon, 28 Jul 2014 10:57:54 +0000 (UTC) Received: from mx2.mail.bg (mx2.mail.bg [IPv6:2001:67c:16b8:1::2:18]) by mx1.freebsd.org (Postfix) with ESMTP id 4546F2597 for ; Mon, 28 Jul 2014 10:57:54 +0000 (UTC) Received: from [10.1.1.159] (unknown [95.87.254.225]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mx2.mail.bg (Postfix) with ESMTPSA id 9841E6000847 for ; Mon, 28 Jul 2014 13:57:52 +0300 (EEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=mail.bg; s=default; t=1406545072; bh=3xfsi1Lw0LWSUlvwqLw275xWWJp2YH/wZGtNdESyyEk=; h=Content-Type:Mime-Version:Subject:From:In-Reply-To:Date: Content-Transfer-Encoding:Message-Id:References:To; b=mLidZY9TaRmEMlo0y1Iz4ft1HvVWQkIQ45tri4VXXjf5/MERI6drNHUrmJlN9pcuQ Mq2k2g74sOMlUSXgtuqYkeix+x8rSrlcYPQaFgZ9eIp04qBJ5P/Z9Vub3ZND1tujzV JikBkKdfN/kwkSYAaZrS+g3r+rqRXOX6Sm4sJCMU= Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1283) Subject: Re: [Machine readable output from userland utilities] report From: Zaro Korchev In-Reply-To: Date: Mon, 28 Jul 2014 13:57:47 +0300 Content-Transfer-Encoding: quoted-printable Message-Id: References: <8D1B686D-1AAA-4E07-9270-E42699110561@mail.bg> <2F779B73-EAC5-49B4-B3E8-7A81109EC166@mail.bg> <5AF0FF20-E41B-4D46-A427-D84D9E2CD047@mail.bg> <19220D3B-101C-45A4-AE41-068E033D5F92@mail.bg> <60B2286C-F0BA-4757-9603-BE23E365A576@mail.bg> To: soc-status@freebsd.org X-Mailer: Apple Mail (2.1283) X-BeenThere: soc-status@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Summer of Code Status Reports and Discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2014 10:57:54 -0000 Hi everybody This week I worked on adding libsol support to ifconfig. At the moment = the support is partial but works for the usual usage cases. Here is some example output: { "em0": { "flags": { "value": 34883, "list": [ "UP", "BROADCAST", "RUNNING", "SIMPLEX", "MULTICAST" ] }, "metric": 0, "mtu": 1500, "options": { "value": 155, "list": [ "RXCSUM", "TXCSUM", "VLAN_MTU", "VLAN_HWTAGGING", "VLAN_HWCSUM" ] }, "ether": "08:00:27:a8:45:71", "inet": "10.0.2.15", "netmask": 4294967040, "broadcast": "10.0.2.255", "nd6 options": { "value": 41, "list": [ "PERFORMNUD", "IFDISABLED", "AUTO_LINKLOCAL" ] }, "media": { "type": "Ethernet", "subtype": "autoselect", "options": [], "active": { "subtype": "1000baseT", "options": [ "full-duplex" ] } }, "status": "active" }, "lo0": { "flags": { "value": 32841, "list": [ "UP", "LOOPBACK", "RUNNING", "MULTICAST" ] }, "metric": 0, "mtu": 16384, "options": { "value": 6291459, "list": [ "RXCSUM", "TXCSUM", "RXCSUM_IPV6", "TXCSUM_IPV6" ] }, "inet6": "fe80::1%lo0", "prefixlen": 64, "inet6 iff": [], "scopeid": 2, "inet": "127.0.0.1", "netmask": 4278190080, "nd6 options": { "value": 33, "list": [ "PERFORMNUD", "AUTO_LINKLOCAL" ] } } } Zaro=