summaryrefslogblamecommitdiff
path: root/src/login/send.c
blob: 3de340810ad76e5e96ce5a3e06efe5836d0117a9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                         
                         







                                 
                                         

                               











                                              
// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// Copyright (c) 2014 Evol developers

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "../../../common/HPMi.h"
#include "../../../common/malloc.h"
#include "../../../common/mmo.h"
#include "../../../common/socket.h"
#include "../../../common/strlib.h"
#include "../../../login/login.h"

#include "login/config.h"
#include "login/send.h"

void send_server_version(int fd)
{
    WFIFOHEAD(fd, 4 + 8);
    WFIFOW(fd, 0) = 0x7531;
    WFIFOW(fd, 2) = 4 + 8;
    WFIFOL(fd, 4) = 0;  // unused
    WFIFOL(fd, 8) = 3;  // server version
    WFIFOSET(fd, WFIFOW(fd,2));
}

void send_update_host(int fd)
{
    if (!update_server)
        return;
    const int sz = 4 + strlen(update_server);
    WFIFOHEAD(fd, sz);
    WFIFOW(fd, 0) = 0x63;
    WFIFOW(fd, 2) = sz;
    memcpy(WFIFOP (fd, 4), update_server, sz);
    WFIFOSET(fd, sz);
}