File: qemuipsanitize.h

package info (click to toggle)
cowdancer 0.89
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 648 kB
  • sloc: ansic: 4,596; sh: 407; makefile: 144; cpp: 5
file content (14 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* QEMU local-IP-address fixer.

   Qemu guest OSs will think 127.0.0.1 is itself, and not the host OS.
   Fix that!

 */

#ifndef __QEMUIPSANITIZE_H__
#define __QEMUIPSANITIZE_H__

const char *sanitize_ipaddress(const char *addr);
char *sanitize_mirror(const char *addr);

#endif