diff options
| author | zousar <[email protected]> | 2023-10-12 08:37:41 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-12 08:37:41 -0600 |
| commit | c2310e7f9f1ffd60184ad9b5e4ae79d34122e6a6 (patch) | |
| tree | ff3514b444bc6943e2668f8f145bf1c9b00556fc /src/zenserver/vfs | |
| parent | Update README.md (diff) | |
| parent | Merge remote-tracking branch 'origin/main' into zs/default-port-change (diff) | |
| download | zen-c2310e7f9f1ffd60184ad9b5e4ae79d34122e6a6.tar.xz zen-c2310e7f9f1ffd60184ad9b5e4ae79d34122e6a6.zip | |
Merge pull request #465 from EpicGames/zs/default-port-change
Change default port to 8558
Diffstat (limited to 'src/zenserver/vfs')
| -rw-r--r-- | src/zenserver/vfs/vfsservice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenserver/vfs/vfsservice.cpp b/src/zenserver/vfs/vfsservice.cpp index c53682d93..04ba29ed2 100644 --- a/src/zenserver/vfs/vfsservice.cpp +++ b/src/zenserver/vfs/vfsservice.cpp @@ -58,8 +58,8 @@ GetContentAsCbObject(HttpServerRequest& HttpReq, CbObject& Cb) // // to test: // -// echo {"method": "mount", "params": {"path": "d:\\VFS_ROOT"}} | curl.exe http://localhost:1337/vfs --data-binary @- -// echo {"method": "unmount"} | curl.exe http://localhost:1337/vfs --data-binary @- +// echo {"method": "mount", "params": {"path": "d:\\VFS_ROOT"}} | curl.exe http://localhost:8558/vfs --data-binary @- +// echo {"method": "unmount"} | curl.exe http://localhost:8558/vfs --data-binary @- VfsService::VfsService() { |