From owner-cvs-src@FreeBSD.ORG Tue Jan 20 12:49:23 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 D065716A4CF; Tue, 20 Jan 2004 12:49:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 155AE43D7E; Tue, 20 Jan 2004 12:48:27 -0800 (PST) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i0KKmQ0B098261; Tue, 20 Jan 2004 12:48:26 -0800 (PST) (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i0KKmQhH098260; Tue, 20 Jan 2004 12:48:26 -0800 (PST) (envelope-from emax) Message-Id: <200401202048.i0KKmQhH098260@repoman.freebsd.org> From: Maksim Yevmenkin Date: Tue, 20 Jan 2004 12:48:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libsdp Makefile sdp.3 sdp.h search.c service.c src/usr.sbin/bluetooth/sdpd bgd.c dun.c ftrn.c irmc.c irmc_command.c lan.c log.c log.h main.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: Tue, 20 Jan 2004 20:49:24 -0000 emax 2004/01/20 12:48:26 PST FreeBSD src repository Modified files: lib/libsdp Makefile sdp.3 sdp.h search.c usr.sbin/bluetooth/sdpcontrol sdpcontrol.c Added files: lib/libsdp service.c usr.sbin/bluetooth/sdpd bgd.c dun.c ftrn.c irmc.c irmc_command.c lan.c log.c log.h main.c opush.c profile.c profile.h provider.c provider.h sar.c scr.c sd.c sdpd.8 server.c server.h sp.c srr.c ssar.c ssr.c sur.c Log: Import sdpd(8) sources. This is Bluetooth Service Discovery Protocol daemon. Extend libsdp(3) API to allow service registration and removal. Fix uninitialized variable bug in sdpcontrol(8). Reviewed by: imp (mentor) No objection: ru Revision Changes Path 1.2 +4 -1 src/lib/libsdp/Makefile 1.4 +86 -4 src/lib/libsdp/sdp.3 1.4 +44 -0 src/lib/libsdp/sdp.h 1.5 +8 -2 src/lib/libsdp/search.c 1.1 +237 -0 src/lib/libsdp/service.c (new) 1.3 +1 -0 src/usr.sbin/bluetooth/sdpcontrol/sdpcontrol.c 1.1 +102 -0 src/usr.sbin/bluetooth/sdpd/bgd.c (new) 1.1 +136 -0 src/usr.sbin/bluetooth/sdpd/dun.c (new) 1.1 +117 -0 src/usr.sbin/bluetooth/sdpd/ftrn.c (new) 1.1 +133 -0 src/usr.sbin/bluetooth/sdpd/irmc.c (new) 1.1 +117 -0 src/usr.sbin/bluetooth/sdpd/irmc_command.c (new) 1.1 +177 -0 src/usr.sbin/bluetooth/sdpd/lan.c (new) 1.1 +127 -0 src/usr.sbin/bluetooth/sdpd/log.c (new) 1.1 +47 -0 src/usr.sbin/bluetooth/sdpd/log.h (new) 1.1 +235 -0 src/usr.sbin/bluetooth/sdpd/main.c (new) 1.1 +133 -0 src/usr.sbin/bluetooth/sdpd/opush.c (new) 1.1 +382 -0 src/usr.sbin/bluetooth/sdpd/profile.c (new) 1.1 +90 -0 src/usr.sbin/bluetooth/sdpd/profile.h (new) 1.1 +196 -0 src/usr.sbin/bluetooth/sdpd/provider.c (new) 1.1 +75 -0 src/usr.sbin/bluetooth/sdpd/provider.h (new) 1.1 +315 -0 src/usr.sbin/bluetooth/sdpd/sar.c (new) 1.1 +91 -0 src/usr.sbin/bluetooth/sdpd/scr.c (new) 1.1 +212 -0 src/usr.sbin/bluetooth/sdpd/sd.c (new) 1.1 +136 -0 src/usr.sbin/bluetooth/sdpd/sdpd.8 (new) 1.1 +547 -0 src/usr.sbin/bluetooth/sdpd/server.c (new) 1.1 +101 -0 src/usr.sbin/bluetooth/sdpd/server.h (new) 1.1 +117 -0 src/usr.sbin/bluetooth/sdpd/sp.c (new) 1.1 +138 -0 src/usr.sbin/bluetooth/sdpd/srr.c (new) 1.1 +225 -0 src/usr.sbin/bluetooth/sdpd/ssar.c (new) 1.1 +252 -0 src/usr.sbin/bluetooth/sdpd/ssr.c (new) 1.1 +82 -0 src/usr.sbin/bluetooth/sdpd/sur.c (new)