From owner-cvs-src@FreeBSD.ORG Thu Nov 18 18:05:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4967916A4CE; Thu, 18 Nov 2004 18:05:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3350C43D55; Thu, 18 Nov 2004 18:05:16 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id iAII5G2e076425; Thu, 18 Nov 2004 18:05:16 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id iAII5FE3076424; Thu, 18 Nov 2004 18:05:15 GMT (envelope-from emax) Message-Id: <200411181805.iAII5FE3076424@repoman.freebsd.org> From: Maksim Yevmenkin Date: Thu, 18 Nov 2004 18:05:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/bluetooth/bthidd Makefile bthid_config.h bthidd.c bthidd.conf.sample bthidd.h client.c hid.c kbd.c kbd.h lexer.l parser.y server.c session.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Nov 2004 18:05:16 -0000 emax 2004-11-18 18:05:15 UTC FreeBSD src repository Modified files: usr.sbin/bluetooth/bthidd Makefile bthid_config.h bthidd.c bthidd.conf.sample bthidd.h client.c hid.c lexer.l parser.y server.c session.c Added files: usr.sbin/bluetooth/bthidd kbd.c kbd.h Log: Check in updated bthidd(8). This is still work in progress. Revision Changes Path 1.3 +7 -4 src/usr.sbin/bluetooth/bthidd/Makefile 1.2 +0 -0 src/usr.sbin/bluetooth/bthidd/bthid_config.h 1.3 +28 -8 src/usr.sbin/bluetooth/bthidd/bthidd.c 1.2 +0 -0 src/usr.sbin/bluetooth/bthidd/bthidd.conf.sample 1.2 +20 -15 src/usr.sbin/bluetooth/bthidd/bthidd.h 1.2 +0 -0 src/usr.sbin/bluetooth/bthidd/client.c 1.2 +121 -13 src/usr.sbin/bluetooth/bthidd/hid.c 1.1 +592 -0 src/usr.sbin/bluetooth/bthidd/kbd.c (new) 1.1 +41 -0 src/usr.sbin/bluetooth/bthidd/kbd.h (new) 1.2 +0 -0 src/usr.sbin/bluetooth/bthidd/lexer.l 1.2 +3 -3 src/usr.sbin/bluetooth/bthidd/parser.y 1.2 +50 -1 src/usr.sbin/bluetooth/bthidd/server.c 1.2 +12 -4 src/usr.sbin/bluetooth/bthidd/session.c