Searched refs:dst_ip (Results 1 – 4 of 4) sorted by relevance
/linux-2.4.37.9/net/atm/ |
D | mpoa_caches.h | 32 in_cache_entry *(*add_entry)(uint32_t dst_ip, 34 in_cache_entry *(*get)(uint32_t dst_ip, struct mpoa_client *client); 35 in_cache_entry *(*get_with_mask)(uint32_t dst_ip,
|
D | mpc.c | 159 struct atm_mpoa_qos *atm_mpoa_add_qos(uint32_t dst_ip, struct atm_qos *qos) in atm_mpoa_add_qos() argument 163 entry = atm_mpoa_search_qos(dst_ip); in atm_mpoa_add_qos() 175 entry->ipaddr = dst_ip; in atm_mpoa_add_qos() 184 struct atm_mpoa_qos *atm_mpoa_search_qos(uint32_t dst_ip) in atm_mpoa_search_qos() argument 190 if(qos->ipaddr == dst_ip) { in atm_mpoa_search_qos() 1036 uint32_t dst_ip = msg->content.in_info.in_dst_ip; in MPOA_trigger_rcvd() local 1039 entry = mpc->in_ops->get(dst_ip, mpc); in MPOA_trigger_rcvd() 1041 entry = mpc->in_ops->add_entry(dst_ip, mpc); in MPOA_trigger_rcvd() 1073 uint32_t dst_ip = msg->content.in_info.in_dst_ip; in check_qos_and_open_shortcut() local 1074 unsigned char *ip __attribute__ ((unused)) = (unsigned char *)&dst_ip; in check_qos_and_open_shortcut() [all …]
|
D | mpc.h | 60 struct atm_mpoa_qos *atm_mpoa_add_qos(uint32_t dst_ip, struct atm_qos *qos); 61 struct atm_mpoa_qos *atm_mpoa_search_qos(uint32_t dst_ip);
|
D | mpoa_caches.c | 25 static in_cache_entry *in_cache_get(uint32_t dst_ip, in in_cache_get() argument 33 if( entry->ctrl_info.in_dst_ip == dst_ip ){ in in_cache_get() 45 static in_cache_entry *in_cache_get_with_mask(uint32_t dst_ip, in in_cache_get_with_mask() argument 54 if((entry->ctrl_info.in_dst_ip & mask) == (dst_ip & mask )){ in in_cache_get_with_mask() 87 static in_cache_entry *in_cache_add_entry(uint32_t dst_ip, in in_cache_add_entry() argument 90 unsigned char *ip __attribute__ ((unused)) = (unsigned char *)&dst_ip; in in_cache_add_entry() 111 entry->ctrl_info.in_dst_ip = dst_ip; in in_cache_add_entry()
|