File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ This file is a manually maintained list of changes for each release. Feel free
44to add your changes here when sending pull requests. Also send corrections if
55you spot any mistakes.
66
7+ ## 0.2.1 (2014-03-xx)
8+
9+ * Fix: Make sure ` Socket\Factory::createIcmp6() ` actually returns an ICMPv6 socket
10+ ([ #8 ] ( https://github.com/clue/socket-react/pull/8 ) )
11+
712## 0.2.0 (2014-03-04)
813
914* BC break: More SOLID design, reuse existing code, refactor code to fix
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ public function createIcmp4()
134134
135135 public function createIcmp6 ()
136136 {
137- return $ this ->createFromRaw ($ this ->rawFactory ->createIcmp4 ());
137+ return $ this ->createFromRaw ($ this ->rawFactory ->createIcmp6 ());
138138 }
139139
140140 public function createFromRaw (RawSocket $ rawSocket )
You can’t perform that action at this time.
0 commit comments