src/common/pcap-writer.h
changeset 53 ae406f4957d5
parent 52 72a52d59ee9f
child 54 f860e6f94787
--- a/src/common/pcap-writer.h	Tue Sep 05 12:54:53 2006 +0200
+++ b/src/common/pcap-writer.h	Tue Sep 05 13:13:39 2006 +0200
@@ -53,15 +53,15 @@
 	 * that the content of the file will Packets with
 	 * Ethernet/LLC/SNAP encapsulation.
 	 */
-	void write_header_ethernet (void);
+	void writeHeaderEthernet (void);
 
 	/**
 	 * \param packet packet to write to output file
 	 */
-	void write_packet (Packet const packet);
+	void writePacket (Packet const packet);
 
 private:
-	void write_data (uint8_t *buffer, uint32_t size);
+	void writeData (uint8_t *buffer, uint32_t size);
 	void write_32 (uint32_t data);
 	void write_16 (uint16_t data);
 	SystemFile *m_writer;