由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - shall i call system("ifconfig eth0 ... up") or write my own code ?
相关主题
想编一个从同一台机器上的很多虚拟IP地址发出packet的程序?一个pc只有一个NIC,能跟2个不同的subnet connect 吗? (转载)
cvs configuration有懂bigtable ,hbase,c*的么?问一个timestamp的问题
Software Configuration Management (转载)东海岸的NTP服务器竟然down了仨儿
哪里能看一下fedora glibc 的 make configuration (转载)做shadowsocks-R的作者破娃breakwa11被禁声了?
laptop 可以连到学校的wireless, 但是不能连到家里的,什么原因啊?How to get local hostname under linux?
How to synchronize two computers clock?关于tcp包头的一个小问题 [图] (转载)
Is there anyone familiar with NTP Time Synchronization?Linux网络编程的疑难问题
boost的deadline_timer要多脑残才能整出来?我是否需要Move(C++11)?
相关话题的讨论汇总
话题: ifconfig话题: eth0话题: system话题: write话题: up
进入Programming版参与讨论
1 (共1页)
w*s
发帖数: 7227
1
for a complicated linux application,
we need to configure ethernet port a lot,
e.g. bring up the port, for 2 ways,
1. system("ifconfig eth0 ... up")
2. write a c function
which way is better ? any concerns for method 1 ?
b*******s
发帖数: 5216
2
write a shell script
h**i
发帖数: 712
3
2的工作量太大,没必要。
1有个问题,实际是调用shell去fork,需要查询返回值的时候有点麻烦。

【在 w*s 的大作中提到】
: for a complicated linux application,
: we need to configure ethernet port a lot,
: e.g. bring up the port, for 2 ways,
: 1. system("ifconfig eth0 ... up")
: 2. write a c function
: which way is better ? any concerns for method 1 ?

w*s
发帖数: 7227
4
system() has return values, right ?

【在 h**i 的大作中提到】
: 2的工作量太大,没必要。
: 1有个问题,实际是调用shell去fork,需要查询返回值的时候有点麻烦。

h**i
发帖数: 712
5
你去call一个NTP client或者dhcpc试一下,返回值有什么用?
如果是web application,更应该少用system。

【在 w*s 的大作中提到】
: system() has return values, right ?
1 (共1页)
进入Programming版参与讨论
相关主题
我是否需要Move(C++11)?laptop 可以连到学校的wireless, 但是不能连到家里的,什么原因啊?
how to write IE plug-in?How to synchronize two computers clock?
Re: [转载] how would you do this?Is there anyone familiar with NTP Time Synchronization?
cgi测试newbee问题boost的deadline_timer要多脑残才能整出来?
想编一个从同一台机器上的很多虚拟IP地址发出packet的程序?一个pc只有一个NIC,能跟2个不同的subnet connect 吗? (转载)
cvs configuration有懂bigtable ,hbase,c*的么?问一个timestamp的问题
Software Configuration Management (转载)东海岸的NTP服务器竟然down了仨儿
哪里能看一下fedora glibc 的 make configuration (转载)做shadowsocks-R的作者破娃breakwa11被禁声了?
相关话题的讨论汇总
话题: ifconfig话题: eth0话题: system话题: write话题: up