Skip to content

Commit 4600fed

Browse files
committed
Merge branch 'fix-icmp6'
2 parents e48aa4d + 70a3baa commit 4600fed

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ This file is a manually maintained list of changes for each release. Feel free
44
to add your changes here when sending pull requests. Also send corrections if
55
you 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

Socket/React/Datagram/Factory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)