This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <!-- --> | |
| <!-- Copyright (2019) Intel Corporation. --> | |
| <!-- --> | |
| <!-- Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: --> | |
| <!-- --> | |
| <!-- * Redistributions must reproduce the above copyright notice and the following disclaimer in the documentation and/or other materials provided with --> | |
| <!-- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import socket | |
| import asyncio | |
| import struct | |
| import time | |
| import signal | |
| import sys | |
| ETH_P_IP = 0x0800 | |
| Pacotes = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include "No.h" | |
| template<typename tipo> | |
| class Lista { | |
| No<tipo> *Primeiro; | |
| No<tipo> *Atual; | |
| public: | |
| void Remover(tipo X, bool &Ok) { | |
| Ok = false; |