diff options
author | Luboš Doležel <lubos@dolezel.info> | 2016-03-18 09:21:25 +0100 |
---|---|---|
committer | Luboš Doležel <lubos@dolezel.info> | 2016-03-18 09:21:25 +0100 |
commit | 685b0c917a867b024200991caedbf839e535b960 (patch) | |
tree | d96cec615e549a8e101431ea81f18d155fd56821 /src/stun | |
parent | 7b4af446825ab31b2a0b6ad70a714d59e3e8c912 (diff) | |
parent | cc03e5e941dac2ee5f977eeb63597917c17f6505 (diff) | |
download | twinkle-685b0c917a867b024200991caedbf839e535b960.tar twinkle-685b0c917a867b024200991caedbf839e535b960.tar.gz twinkle-685b0c917a867b024200991caedbf839e535b960.tar.lz twinkle-685b0c917a867b024200991caedbf839e535b960.tar.xz twinkle-685b0c917a867b024200991caedbf839e535b960.zip |
Merge pull request #63 from petercolberg/spelling
Spelling fixes
Diffstat (limited to 'src/stun')
-rw-r--r-- | src/stun/stun.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stun/stun.cxx b/src/stun/stun.cxx index dd8b8d0..b2aa08b 100644 --- a/src/stun/stun.cxx +++ b/src/stun/stun.cxx @@ -1025,7 +1025,7 @@ string stunMsg2Str(const StunMessage &m) { s += "\n"; if (m.hasMappedAddress) { - s += "Mapped Addres = "; + s += "Mapped Address = "; s += h_ip2str(m.mappedAddress.ipv4.addr); s += ':'; s += int2str(m.mappedAddress.ipv4.port); @@ -1034,7 +1034,7 @@ string stunMsg2Str(const StunMessage &m) { if (m.hasResponseAddress) { - s += "Response Addres = "; + s += "Response Address = "; s += h_ip2str(m.responseAddress.ipv4.addr); s += ':'; s += int2str(m.responseAddress.ipv4.port); @@ -1058,7 +1058,7 @@ string stunMsg2Str(const StunMessage &m) { } if (m.hasSourceAddress) { - s += "Source Addres = "; + s += "Source Address = "; s += h_ip2str(m.sourceAddress.ipv4.addr); s += ':'; s += int2str(m.sourceAddress.ipv4.port); @@ -1066,7 +1066,7 @@ string stunMsg2Str(const StunMessage &m) { } if (m.hasChangedAddress) { - s += "Changed Addres = "; + s += "Changed Address = "; s += h_ip2str(m.changedAddress.ipv4.addr); s += ':'; s += int2str(m.changedAddress.ipv4.port); |