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
| if(idmanager_isMyAddress(&ipv6_header->dest)) | |
| { | |
| switch(msg->l4_protocol) { | |
| case IANA_TCP: | |
| opentcp_receive(msg); | |
| break; | |
| case IANA_UDP: | |
| openudp_receive(msg); | |
| break; | |
| case IANA_ICMPv6: |
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
| <?php | |
| namespace SocialNetwork\Entity; | |
| use Doctrine\ORM\Mapping as ORM; | |
| /** | |
| * User | |
| * |