免费 C/C++ PPP 的 Java 实现?
是否有通过串行线路使用的点对点协议 (PPP) 的免费 C/C++ 和 Java 实现? C/C++ 实现将进入嵌入式硬件,因此可移植性是一个问题。 我并不是在寻找完整的 TCP/IP 堆栈,只是提供一个面向连接的基础来构建。
Are there free C/C++ and Java implementations of the point-to-point protocol (PPP) for use over a serial line? The C/C++ implementation will go into embedded hardware so portability is a concern. I'm not looking for a full TCP/IP stack, just something to provide a connection-oriented base to build on top of.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
大多数基于 Linux 的系统中使用的软件包是 C 语言,名为 Paul's PPP Package。
FreeBSD 有一个完全不同的版本,也是用 C 编写的,但我没有使用它的经验。
The one used in most Linux-based systems is in C and is named Paul's PPP Package.
FreeBSD has a completely different one, also written in C, but I have no experience with it.
在 Linux 中,我使用 chat 和 pppd 在 Linux 中通过串行线路使用 ppp。 (添加 gprs 调制解调器以获取互联网连接)
In linux I use chat and pppd for using ppp over serial line in linux. ( Adding a gprs modem to get internet connection )
我找到了一个名为 TINI 的库,其中包含 ppp java 实现
http://raud.ut.ee /~tec/static/api/tini1.15/javadocs/firmware/index.html
这里有更多描述
http://www.maxim-ic.com/products/ ibutton/software/1wire/1wire_api.cfm
希望有帮助
I found a library named TINI that includes a ppp java implementation
http://raud.ut.ee/~tec/static/api/tini1.15/javadocs/firmware/index.html
And more description here
http://www.maxim-ic.com/products/ibutton/software/1wire/1wire_api.cfm
Hope it helps