I'm having a javascript function which is returning me the ip address. The function is this:
const clientsIpAdress = (onNewIP) => {
const MyPeerConnection =
window.RTCPeerConnection ||
window.mozRTCPeerConnection ||
window.webkitRTCPeerConnection;
const pc = new MyPeerConnection({
iceServers: []
});
const noop = () => {};
const localIPs = {};
const ipRegex =
/([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g;
const iterateIP = (ip) => {
if (!localIPs[ip]) onNewIP(ip);
localIPs[ip] = true;
};
pc.createDataChannel('');
pc.createOffer().then((sdp) => {
sdp.sdp.split('\n').forEach((line) => {
if (line.indexOf('candidate') < 0) return;
line.match(ipRegex).forEach(iterateIP);
});
pc.setLocalDescription(sdp, noop, noop);
});
pc.onicecandidate = (ice) => {
if (!ice || !ice.candidate ||
!ice.candidate.candidate ||
!ice.candidate.candidate.match(ipRegex)) return;
ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
};
};
export default clientsIpAdress;
When i import it, and write
const myIpAdress = clientsIpAdress((ip) => {
console.log(ip);
});
it logs me the correct ip. But when I'm writing this:
const myIpAdress = clientsIpAdress((ip) => {
return(ip);
});
and I do console.log(myIpAdress), undefined is being returned. Maybe, it's a foolish question but I got stuck. Thanks.