-
Notifications
You must be signed in to change notification settings - Fork 367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error! getaddrinfo ENOTFOUND catlobby.maxogden.com catlobby.maxogden.com:80 #65
Comments
also this error |
@maxogden doesn't maintain the server |
I've been looking for a solution like this for a very long time and screencat looks like it was great back when it was maintained. any chance that @maxogden could release the server code that was used for catlobby.maxogden.com? at this time it looks like the server is no longer running and it would be great to have this code available so the project can live on. |
he has released the server code. |
@Craigzyc Installed it successfully :)
Not sure about configuring the client tho |
Yea I installed it as well but haven't had much time to dig into what else is required. If I have the time to get it working I'll host a public server and fork this into a working version. |
FYI I don't have 2 macs to test between and can't get robotjs to build on my windows machine currently so I cant test |
@Craigzyc can you please provide code of server that you have hosted on glitch |
cat-lobby is the server side of it. |
@CraigZych it does not run over https and when i am trying to convert it I am facing error in " var events = new EventSource(pingsUrl)" |
honestly I don't know. I just remembered what the server was called. I ended up building my own app and server completely from scratch for my uses. |
@CraigZych can you make code of your app public or provide link for same |
yout code include:
first:
var server = 'http://catlobby.maxogden.com';
var remoteConfigUrl = 'https://instant.io/rtcConfig';
if (process.browser) remoteConfigUrl = 'http://cors.maxogden.com/' + remoteConfigUrl;
function verifyRoom (room, cb) {
second:
// ensure room is still open
nets({method: 'POST', uri: server + '/v1/' + room + '/pong', json: {ready: true}}, function response (err, resp, data) {
if (err){
console.log('connect server error: ', err);
return cb(err)
}
}
thrid:
// get remote webrtc config (ice/stun/turn)
function getRemoteConfig (cb) {
nets({url: remoteConfigUrl, json: true}, function gotConfig (err, resp, config) {
if (err || resp.statusCode > 299) config = undefined // ignore errors
cb(null, config)
})
}
fourth:
// get remote webrtc config (ice/stun/turn)
function getRemoteConfig (cb) {
nets({url: remoteConfigUrl, json: true}, function gotConfig (err, resp, config) {
if (err || resp.statusCode > 299) config = undefined // ignore errors
cb(null, config)
})
}
I think that this two url is to deal code, but I think your server is down , I want to ask you what logic about your two request( uri: server + '/v1/' + room + '/pong' and url: remoteConfigUrl,), and the getRemoteConfig function return the data is or not json format? please give me an example of the config object
I want to create server about like your 'http://catlobby.maxogden.com' to deal code logic , but I do not how to create and the server Background logic and field of your data
The text was updated successfully, but these errors were encountered: