File: testwebsocket.php

package info (click to toggle)
pushpin 1.36.0-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 2,752 kB
  • sloc: cpp: 39,464; python: 970; sh: 132; ansic: 56; makefile: 35; php: 27
file content (9 lines) | stat: -rw-r--r-- 123 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
<?php

$body = @file_get_contents('php://input');

header('Content-Type: application/websocket-events');

print $body;

?>