Changeset 1bbc6dc in mainline for uspace/srv/net/inetsrv/inetcfg.h


Ignore:
Timestamp:
2024-09-17T06:44:46Z (5 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Children:
9aa51406
Parents:
096c0786
git-author:
Jiri Svoboda <jiri@…> (2024-09-16 18:44:38)
git-committer:
Jiri Svoboda <jiri@…> (2024-09-17 06:44:46)
Message:

Network configuration persistence.

nconfsrv is folded into inetsrv
DHCP is disabled when a static address is configured on a link

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/inetsrv/inetcfg.h

    r096c0786 r1bbc6dc  
    11/*
    2  * Copyright (c) 2012 Jiri Svoboda
     2 * Copyright (c) 2024 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    3838#define INETCFG_H_
    3939
     40#include <errno.h>
     41#include "inetsrv.h"
     42
    4043extern void inet_cfg_conn(ipc_call_t *, void *);
     44extern errno_t inet_cfg_open(const char *, inet_cfg_t **);
     45extern errno_t inet_cfg_sync(inet_cfg_t *);
     46extern void inet_cfg_close(inet_cfg_t *);
    4147
    4248#endif
Note: See TracChangeset for help on using the changeset viewer.