tag | line | file | source code |
dport | 51 | include/net/ip_masq.h | __u16 sport, dport, mport; /* src, dst & masq ports */ |
dport | 79 | include/net/ip_masq.h | extern struct ip_masq *ip_masq_new(struct device *dev, int proto, __u32 saddr, __u16 sport, __u32 daddr, __u16 dport, unsigned flags); |
dport | 199 | net/ipv4/ip_masq.c | (s_port==ms->dport || ms->flags & IP_MASQ_F_NO_DPORT) && |
dport | 232 | net/ipv4/ip_masq.c | d_addr == ms->daddr && d_port == ms->dport ) |
dport | 288 | net/ipv4/ip_masq.c | struct ip_masq * ip_masq_new(struct device *dev, int proto, __u32 saddr, __u16 sport, __u32 daddr, __u16 dport, unsigned mflags) |
dport | 318 | net/ipv4/ip_masq.c | ms->dport = dport; |
dport | 550 | net/ipv4/ip_masq.c | ms->dport = portptr[0]; |
dport | 553 | net/ipv4/ip_masq.c | ntohs(ms->dport)); |
dport | 634 | net/ipv4/ip_masq.c | ntohl(ms->daddr),ntohs(ms->dport), |
dport | 187 | net/ipv4/ip_masq_app.c | mapp = ip_masq_app_get(ms->protocol, ms->dport); |
dport | 136 | net/ipv4/tcp_input.c | static inline struct sock * get_tcp_sock(u32 saddr, u16 sport, u32 daddr, u16 dport) |
dport | 142 | net/ipv4/tcp_input.c | sport != th_cache_sport || dport != th_cache_dport) { |
dport | 143 | net/ipv4/tcp_input.c | sk = get_sock(&tcp_prot, dport, saddr, sport, daddr); |
dport | 147 | net/ipv4/tcp_input.c | th_cache_dport=dport; |