Added files for LmSSL and LmProxy to ruby bindings
authorMikael Hallendal <micke@imendio.com>
Thu, 10 Apr 2008 13:43:01 +0200
changeset 374 6fb30156b968
parent 373 726a540b372d
child 375 1f0f637e3ae8
Added files for LmSSL and LmProxy to ruby bindings
bindings/ruby/rblm-proxy.c
bindings/ruby/rblm-ssl.c
bindings/ruby/rblm.c
bindings/ruby/rblm.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bindings/ruby/rblm-proxy.c	Thu Apr 10 13:43:01 2008 +0200
@@ -0,0 +1,6 @@
+#include "rblm.h"
+
+extern void
+Init_lm_proxy (VALUE lm_mLM)
+{}
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bindings/ruby/rblm-ssl.c	Thu Apr 10 13:43:01 2008 +0200
@@ -0,0 +1,6 @@
+#include "rblm.h"
+
+extern void
+Init_lm_ssl (VALUE lm_mLM)
+{}
+
--- a/bindings/ruby/rblm.c	Thu Apr 10 13:39:52 2008 +0200
+++ b/bindings/ruby/rblm.c	Thu Apr 10 13:43:01 2008 +0200
@@ -11,5 +11,7 @@
 	Init_lm_message (lm_mLM);
 	Init_lm_message_node (lm_mLM);
 	Init_lm_constants (lm_mLM);
+	Init_lm_ssl (lm_mLM);
+	Init_lm_proxy (lm_mLM);
 }
 
--- a/bindings/ruby/rblm.h	Thu Apr 10 13:39:52 2008 +0200
+++ b/bindings/ruby/rblm.h	Thu Apr 10 13:43:01 2008 +0200
@@ -10,6 +10,8 @@
 extern void Init_lm_message         (VALUE lm_mLM);
 extern void Init_lm_message_node    (VALUE lm_mLM);
 extern void Init_lm_constants       (VALUE lm_mLM);
+extern void Init_lm_ssl             (VALUE lm_mLM);
+extern void Init_lm_proxy           (VALUE lm_mLM);
 
 #endif /* __RLM_H__ */