|
Server : LiteSpeed System : Linux us-bos-web1933.main-hosting.eu 5.14.0-687.42.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Aug 27 11:55:12 EDT 2026 x86_64 User : u531713874 ( 531713874) PHP Version : 8.3.33 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Directory : /home/u531713874/domains/ariabytepos5.com/public_html/public/js/ | |
|
Path: /home/u531713874/domains/ariabytepos5.com/public_html/public/js/printer.js
Size: 423 B
Permissions: 0755
var socket = null;
var socket_host = 'ws://127.0.0.1:6441';
initializeSocket = function() {
try {
if (socket == null) {
socket = new WebSocket(socket_host);
socket.onopen = function() {};
socket.onmessage = function(msg) {};
socket.onclose = function() {
socket = null;
};
}
} catch (e) {
console.log(e);
}
};