[Asterisk-cvs] asterisk/channels chan_vpb.c,1.77,1.78

bkramer at lists.digium.com bkramer at lists.digium.com
Sun Mar 20 18:11:06 CST 2005


Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv853

Modified Files:
	chan_vpb.c 
Log Message:
/ changed ast_channel_tech structure init to the GCC-specific format, seems 
/ to compile, but havent run it yet


Index: chan_vpb.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_vpb.c,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -d -r1.77 -r1.78
--- chan_vpb.c	20 Mar 2005 22:47:12 -0000	1.77
+++ chan_vpb.c	21 Mar 2005 00:05:57 -0000	1.78
@@ -326,30 +326,30 @@
 static int vpb_fixup(struct ast_channel *oldchan, struct ast_channel *newchan);
 
 static const struct ast_channel_tech vpb_tech = {
-	type,
-	tdesc,
-	AST_FORMAT_SLINEAR,
-	NULL,
-	vpb_request,
-	NULL,
-	vpb_digit,
-	vpb_call,
-	vpb_hangup,
-	vpb_answer,
-	vpb_read,
-	vpb_write,
-	NULL,
-	NULL,
-	NULL,
-	NULL,
-	vpb_bridge,
-	vpb_indicate,
-	vpb_fixup,
-	NULL,
-	NULL,
-	NULL,
-	NULL,
-	NULL
+	type: type,
+	description: tdesc,
+	capabilities: AST_FORMAT_SLINEAR,
+	properties: NULL,
+	requester: vpb_request,
+	devicestate: NULL,
+	send_digit: vpb_digit,
+	call: vpb_call,
+	hangup: vpb_hangup,
+	answer: vpb_answer,
+	read: vpb_read,
+	write: vpb_write,
+	send_text: NULL,
+	send_image: NULL,
+	send_html: NULL,
+	exception: NULL,
+	bridge: vpb_bridge,
+	indicate: vpb_indicate,
+	fixup: vpb_fixup,
+	setoption: NULL,
+	queryoption: NULL,
+	transfer: NULL,
+	write_video: NULL,
+	bridged_channel: NULL
 };
 
 /* Can't get vpb_bridge() working on v4pci without either a horrible 




More information about the svn-commits mailing list