我已经完成了以下代码。你能告诉我init(function_pointer)是什么意思:bgp_init(function)
struct protocol proto_bgp = {
name: "BGP",
template: "bgp%d",
attr_class: EAP_BGP,
preference: DEF_PREF_BGP,
init: bgp_init,
start: bgp_start,
shutdown: bgp_shutdown,
};
答案 0 :(得分:0)
对象后跟的{...}
称为初始化列表。在这种情况下,init
正在初始化为bgp_init
。