diff options
| author | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2007-03-28 21:11:22 +0000 | 
|---|---|---|
| committer | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2007-03-28 21:11:22 +0000 | 
| commit | 9c2ff557a3ffade313dd5dbff6a5b86552ae8208 (patch) | |
| tree | 3c5f104a716aa3275628d5e645e69304472b178e | |
| parent | a26656784f5bdd8b5010637b78d3604343d694d0 (diff) | |
network: removed ProviderName attribute from the server service record
| -rw-r--r-- | network/server.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/network/server.c b/network/server.c index 82927162..edd89c60 100644 --- a/network/server.c +++ b/network/server.c @@ -111,7 +111,7 @@ static int create_server_record(sdp_buf_t *buf, const char *name,  	uint16_t security_desc = (secure ? 0x0001 : 0x0000);  	uint16_t net_access_type = 0xfffe;  	uint32_t max_net_access_rate = 0; -	const char *desc = "BlueZ PAN Service"; +	const char *desc = "BlueZ PAN service";  	sdp_record_t record;  	int ret; @@ -172,7 +172,7 @@ static int create_server_record(sdp_buf_t *buf, const char *name,  		pfseq = sdp_list_append(NULL, &profile[0]);  		sdp_set_profile_descs(&record, pfseq); -		sdp_set_info_attr(&record, "Network Access Point", name, desc); +		sdp_set_info_attr(&record, name, NULL, desc);  		sdp_attr_add_new(&record, SDP_ATTR_NET_ACCESS_TYPE,  					SDP_UINT16, &net_access_type); @@ -189,7 +189,7 @@ static int create_server_record(sdp_buf_t *buf, const char *name,  		pfseq = sdp_list_append(NULL, &profile[0]);  		sdp_set_profile_descs(&record, pfseq); -		sdp_set_info_attr(&record, "Group Network Service", name, desc); +		sdp_set_info_attr(&record, name, NULL, desc);  	}  	if (sdp_gen_record_pdu(&record, buf) < 0) @@ -933,9 +933,9 @@ int server_register(DBusConnection *conn, const char *path, uint16_t id)  	/* Setting a default name */  	if (id == BNEP_SVC_NAP) -		ns->name = g_strdup("Bluetooth NAP service"); +		ns->name = g_strdup("BlueZ NAP service");  	else -		ns->name = g_strdup("Bluetooth GN service"); +		ns->name = g_strdup("BlueZ GN service");  	ns->path = g_strdup(path);  	ns->id = id; | 
