- 浏览: 4755 次
- 性别:
- 来自: 天津
最近访客 更多访客>>
最新评论
-
kylewu:
techabc 写道我在kubuntu 10.10 试验发现还 ...
Ubuntu 下 Erlang R14B 的安装 -
techabc:
我在kubuntu 10.10 试验发现还需要 apt-get ...
Ubuntu 下 Erlang R14B 的安装
文章列表
好久没写了,一直忙着看文档,今天写个简单的吧
现在所作的项目是建立Erlang的MSC,并与C的OpenBSC连接
由于是C 和 Erlang的连系,所以需要用到C Node
下面的代码是简单的C Node,如果加上OpenBSC,就可以实现ping pong消息的传递
代码很简单,连ip port以及erlang node的名字都是写死了,大伙凑合看吧
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <stdlib.h>
#in ...
最近没有看Erlang,一直在看项目相关的文档,现在对GSM网络有了一定了解,这次项目主要是实现一个VLR + MSC,细节先不讲了,说一下刚刚发布的最新版Erlang在Ubuntu的安装
# install libraries and tools
sudo apt-get install libncurses5-dev m4 fop freeglut3-dev libwxgtk2.8-dev g++
# download source code
wget http://erlang.org/download/otp_src_R14B.tar.gz
tar zxvf otp ...
这学期选的Project CS这门课,做的项目需要使用Erlang。前两周要对Erlang进行系统学习。国内貌似Erlang不很普及,今后我会在这里发一些我的学习经历和经验
Erlang书籍:
Erlang Programming, Francesco Cesarini & Simon Thompson, O'Reilly 2009, ISBN 978-0-596-51818-9
Programming Erlang: Software for a Concurrent World by Joe Armstrong.
Programming Rules and Conventions ...