Skip to content

Commit

Permalink
2.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonfontes committed Feb 13, 2020
1 parent cf652db commit db71bf4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Mininet-WiFi Installation/Configuration Notes
----------------------------------------

Mininet-WiFi 2.4.2
Mininet-WiFi 2.4.3
---

The supported installation methods for Mininet are 1) using a
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Mininet-WiFi 2.4.2 License
Mininet-WiFi 2.4.3 License

Copyright (c) 2015-2018 Information & Networking Technologies
Research & Innovation Group
Expand Down
5 changes: 1 addition & 4 deletions mn_wifi/net.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import socket
import random
import re
import sys
from sys import version_info as py_version_info
from threading import Thread as thread
import select
Expand Down Expand Up @@ -49,9 +48,7 @@
from mn_wifi.util import ipAdd6, netParse6


sys.path.append(str(os.getcwd()) + '/mininet/')

VERSION = "2.4.2"
VERSION = "2.4.3"


class Mininet_wifi(Mininet):
Expand Down
1 change: 1 addition & 0 deletions util/versioncheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ def run(*args, **kwargs):
result = co(*args, **kwargs)
return result.decode() if version_info[0] >= 3 else result


# Actually run bin/mn rather than importing via python path
version = 'Mininet-WiFi ' + run('PYTHONPATH=. bin/mn --wifi --version 2>&1', shell=True)
version = version.strip()
Expand Down

0 comments on commit db71bf4

Please sign in to comment.