本文介绍了如何继续行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试继续执行一行代码,并获得正确的语法.任何帮助表示赞赏.谢谢.

I''m trying to continue a line of code and get seem to get the right syntax. Any help is appreciated. Thank you.

if (( flags & 0x01 && flags & 0x10 ) && (ip_header->destination_ip == *addressValue)) / 
||(( flags & 0x02 && flags & 0x10 ) && (ip_header->destination_ip == *addressValue))/
||(( flags & 0x08 && flags & 0x10 ) && (ip_header->destination_ip == *addressValue))
			{

推荐答案



// or 0x10, 1, 2 & 8 to 0x1b
if (( flags & 0x1b ) && (ip_header->destination_ip == *addressValue))
{
}


这篇关于如何继续行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 12:02