To answer my own question, the version of ofxNetwork off github doesn’t work with 0062, I get these errors
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h||In function ‘int ofxNetworkCheckErrno(const std::string&, const std::string&)’
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|26|error: ‘ECONNRESET’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|32|error: ‘ENOTCONN’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|35|error: ‘ENOTSOCK’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|38|error: ‘EOPNOTSUPP’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|41|error: ‘ETIMEDOUT’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|47|error: ‘ENOBUFS’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|53|error: ‘EADDRNOTAVAIL’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|56|error: ‘EAFNOSUPPORT’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|59|error: ‘EISCONN’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|62|error: ‘ECONNREFUSED’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|65|error: ‘ENETUNREACH’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|68|error: ‘EADDRINUSE’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|71|error: ‘EINPROGRESS’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|74|error: ‘EALREADY’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|77|error: ‘ENOPROTOOPT’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|80|error: ‘EPROTONOSUPPORT’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxNetworkUtils.h|92|error: ‘EMSGSIZE’ was not declared in this scope|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxTCPManager.cpp||In member function ‘bool ofxTCPManager::Accept(ofxTCPManager&)’
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxTCPManager.cpp|124|error: braces around scalar initializer for type ‘u_int’|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxTCPManager.cpp||In member function ‘int ofxTCPManager::SendAll(const char*, int)’
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxTCPManager.cpp|277|error: ‘ECONNRESET’ was not declared in this scope|
||=== Build finished: 19 errors, 0 warnings ===|
If I comment out the switch case within ofxNetworkCheckErrno i then get these errors…
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxTCPManager.cpp||In member function ‘bool ofxTCPManager::Accept(ofxTCPManager&)’
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxTCPManager.cpp|124|error: braces around scalar initializer for type ‘u_int’|
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxTCPManager.cpp||In member function ‘int ofxTCPManager::SendAll(const char*, int)’
C:\openframeworks\v0.062\addons\ofxNetwork\src\ofxTCPManager.cpp|277|error: ‘ECONNRESET’ was not declared in this scope|
||=== Build finished: 2 errors, 0 warnings ===|