|
INET Framework for OMNeT++/OMNEST
|
00001 // 00002 // Copyright (C) 2005 Christian Dankbar, Irene Ruengeler, Michael Tuexen 00003 // Copyright (C) 2009 Thomas Reschka 00004 // 00005 // This program is free software; you can redistribute it and/or 00006 // modify it under the terms of the GNU General Public License 00007 // as published by the Free Software Foundation; either version 2 00008 // of the License, or (at your option) any later version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with this program; if not, see <http://www.gnu.org/licenses/>. 00017 // 00018 00019 #ifndef __TCPSERIALIZER_H 00020 #define __TCPSERIALIZER_H 00021 00022 00023 #include "TCPSegment.h" 00024 #include "TCPSegment_m.h" 00025 #include "IPvXAddress.h" 00026 00027 #include "headers/defs.h" 00028 00029 #include "headers/tcp.h" 00030 00034 class TCPSerializer 00035 { 00036 public: 00037 TCPSerializer() {} 00038 00045 int serialize(const TCPSegment *source, unsigned char *destbuf, unsigned int bufsize); 00046 00055 int serialize(const TCPSegment *source, unsigned char *destbuf, unsigned int bufsize, 00056 const IPvXAddress &srcIp, const IPvXAddress &destIp); 00057 00062 void parse(const unsigned char *srcbuf, unsigned int bufsize, TCPSegment *dest); 00063 00067 static uint16_t checksum(const void *addr, unsigned int count, 00068 const IPvXAddress &srcIp, const IPvXAddress &destIp); 00069 }; 00070 00071 #endif